How to read GatewayHook log data

how to read log data from GatewayHook into consol?

ic class MyGatewayHook extends AbstractGatewayModuleHook {
    private static final LoggerEx log = LoggerEx.newBuilder().build("MyLog");

    private ComponentRegistry componentRegistry;

    private GatewayContext gatewayContext;
    @Override
    public void setup(GatewayContext context) {
        this.gatewayContext = context;
        log.info("------------1234-------------");

    }


    @Override
    public void startup(LicenseState activationState) {
        log.info("------------5678-------------");
.
.
.
.

This is Gateway hook, so these log messages would appear in the Gateway logs and in the wrapper.log files.

Thanks for reply,
Is there a way to read this report from the designer or browser console for debugging ?

No, not without setting up the scaffolding to deliver the events yourself.