--log-all/input/inline fail
--log-all/input/inline options for app create/update stop working after changing to composer v2.
before fixing this, i'd like to take a step back and consider how we will more generally address graph rewriting.
we also have no test coverage for this feature
The previous way to implement this is to insert a new state as the first state and after each inline function state to log the data. The new state could be an inline function that is p => {console.log("data: "+JSON.stringify(p)); return p;} to log the data in the conductor activation logs, or an action that calls whisk.system/utils/echo to log the data in a separate activation.
@starpit when you mention "how we will more generally address graph rewriting" are you thinking to implement some more general purpose utility functions to modify the graph? I can implement something like a graph.insertAfter(targetStates, insertStates) to reuse the behavior.