Skip to content

Commit

Permalink
Adding timestamp to action execution log
Browse files Browse the repository at this point in the history
  • Loading branch information
ymao1 committed Dec 1, 2020
1 parent 738e64f commit de79f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/actions/server/lib/action_executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class ActionExecutor {
}

const actionLabel = `${actionTypeId}:${actionId}: ${name}`;
logger.debug(`executing action ${actionLabel}`);
logger.debug(`executing action ${actionLabel} at ${new Date().toISOString()}`);

const event: IEvent = {
event: { action: EVENT_LOG_ACTIONS.execute },
Expand Down

0 comments on commit de79f47

Please sign in to comment.