Reference
operation.log
A tracked operation records a log entry.
This focused page is derived from the mechanically checked full event inventory.
Subscribe
const unsubscribe = Arcane.events.on('operation.log', function handleOperationLog(data) {
// Read only the documented fields from data here.
console.info('Received operation.log.');
});
// Stop listening when this page no longer needs the event.
function stopListeningForOperationLog() {
unsubscribe();
}
globalThis.addEventListener('pagehide', stopListeningForOperationLog, {once: true});
Delivery
Live, future-only operation notification; one operation can emit many entries.
Hosts
Core-backed Microsoft NT, Linux, and development HTTP hosts.
When it fires
A tracked operation records a log entry.
Event data
requestId, operationId, and operationType correlate the operation; time timestamps the entry; level classifies it; message is the readable entry; details carries optional structured context.