feat(ui): add node type to invocation started

This commit is contained in:
psychedelicious 2023-07-25 21:53:31 +10:00
parent 6c46304eb8
commit 751c4407e4

View File

@ -21,7 +21,10 @@ export const addInvocationStartedEventListener = () => {
return;
}
log.debug(action.payload, 'Invocation started');
log.debug(
action.payload,
`Invocation started (${action.payload.data.node.type})`
);
dispatch(appSocketInvocationStarted(action.payload));
},
});