LogEvent
Home > @backstage/plugin-scaffolder-react
> LogEvent
The shape of a LogEvent
message from the scaffolder-backend
Signature:
export type LogEvent = {
type: 'log' | 'completion' | 'cancelled' | 'recovered';
body: {
message: string;
stepId?: string;
status?: ScaffolderTaskStatus;
};
createdAt: string;
id: string;
taskId: string;
};
References: ScaffolderTaskStatus