how are the events received? if you are receiving into a runtime action and if action is undeployed, not active; then events wont show even at browser.
Correct way to confirm, is just print event into log. Create a simple runtime action with just log statement like this
import { Core } from "@adobe/aio-sdk";
const logger = Core.Logger("main");
// main function that will be executed by Adobe I/O Runtime
function main(params) {
logger.info("Developer is receiving commerce actions");
logger.debug(JSON.stringify(params.data));
}
const _main = main;
export { _main as main }; Deploy this action into your workspace using `aio app deploy`. Configure logger. I linked AIO to my Enterprise Splunk, so can read log statements from my splunk.
Once event is fired at commerce, should show on splunk, and will show on event browser as well.