info
Log informational messages.
Import
import { info } from '@evershop/evershop/lib/log';
Syntax
info(message: string): void
Parameters
message
Type: string
The informational message to log.
Examples
import { info } from '@evershop/evershop/lib/log';
// Log information
info('Order processed successfully');
info(`Customer ${email} registered`);
info('Email sent to customer');