@awarns/tracing
Version:
AwarNS Framework package that eases the tracing and debugging of complex task execution workflows
11 lines • 386 B
JavaScript
import { CSVTracesExporter } from './csv';
import { JSONTracesExporter } from './json';
export function createTracesExporter(folder, format = 'csv', fileName) {
switch (format) {
case 'csv':
return new CSVTracesExporter(folder, fileName);
case 'json':
return new JSONTracesExporter(folder, fileName);
}
}
//# sourceMappingURL=index.js.map