/** * @file Frontend error logging utility that forwards errors to the backend telemetry service. * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ /* eslint-disable no-console -- Errors are forwarded to backend via the overridden console.error */ /** * Logs an error to the backend telemetry service. * Accepts the same arguments as console.error — conventionally a context string * followed by the error value. * @param logArguments - The values to log, forwarded directly to console.error. */ const logError = (...logArguments: Array): void => { console.error(...logArguments); }; export { logError };