Apex Methods Reference
This article covers the base Apex methods you'll need to create log records.
File Index
The main class that provides the core logging functionality:
Implements singleton pattern for logging instance management
Handles buffered and immediate logging options
Manages transaction tracking across contexts
Provides methods for different logging levels (ERROR, WARNING, DEBUG, INFO)
Supports integration error logging with HTTP request/response details
Configurable log levels via Custom Metadata
A builder class that provides a fluent interface for creating log records:
Wraps the core
pharos.LogBuilder
to provide a user-friendly APIHandles setting of various log attributes (category, type, area, etc.)
Manages related objects and metadata
Supports integration payload formatting
Handles transaction IDs and user context
Defines the classification system and enums used throughout the framework:
Area
: Functional areas from a business perspective (e.g., OpportunityManagement, RestAPI)Category
: High-level classification (e.g., Apex, Flow, Integration)Level
: Log severity levels (ERROR to FINEST)Type
: Technical classification (e.g., Backend, Frontend, DMLResult)
Context-Specific Components
Provides logging capabilities specifically for Lightning Web Components:
Exposes AuraEnabled methods for LWC logging
Handles component context capture
Manages error details and stack traces
Supports transaction management
Enables logging from Salesforce Flows and Process Builder:
Provides invocable methods for Flow Builder
Handles Flow context capture (Interview GUID, Flow API Name)
Supports custom field mapping through JSON
Manages automatic transaction tracking
Utility Components
Provides utility methods and builder classes:
Log level management and comparison
UUID generation for transaction tracking
HTTP request/response JSON serialization
Pre and post-processing controls
Message formatting utilities
Last updated