Function: generateCorrelationId()
generateCorrelationId():
CorrelationId
Defined in: electron/utils/correlation.ts:83
Generate a unique correlation ID for tracking operations. Uses crypto.randomBytes for cryptographically secure random values.
Returns
A unique correlation ID string (16 hex characters)
Example
const correlationId = generateCorrelationId();
logger.debug(`Correlation ID: ${correlationId}`); // "a1b2c3d4e5f67890"