@awarns/tracing
Version:
AwarNS Framework package that eases the tracing and debugging of complex task execution workflows
13 lines • 407 B
JavaScript
import { uuid } from '@awarns/core/utils/uuid';
export class Trace {
constructor(chainId, type, name, result, content, timestamp = new Date(), id = uuid()) {
this.chainId = chainId;
this.type = type;
this.name = name;
this.result = result;
this.content = content;
this.timestamp = timestamp;
this.id = id;
}
}
//# sourceMappingURL=trace.js.map