This page contains a script to demonstrate javascript modules and a logger.js module.

You can view the output messages in the javascript console.

    <script type="module"> 
        import { Logger } from "../common/log/logger.js";
        const log = new Logger("Application"); 
        log.debug(`this is a debug message `);
    </script>
    
You can see more logging functionality on these pages