I have a redirect action on Post Login, which executes some code in the /continue callback.
Testing the action only executes the first (onExecute) callback, making it impossible to test the second callback.
And there appears to be no way to access logs from actions, making it totally impossible to diagnose what’s going on.
How do we:
- view logs from actions that have executed so we can diagnose them
- and/or test the /continue callback?
Note: I’ve seen this which highlights where the logs are just in the case of testing the execute callback.