ConsoleHandler

Monster/Logging/Handler. ConsoleHandler

you can call the method via the monster namespace new Monster.Logging.Handler.ConsoleHandler().

<script type="module">
import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.6.0/dist/modules/logging/handler/console.js';
console.log(new Monster.Logging.Handler.ConsoleHandler())
</script>

Alternatively, you can also integrate this function individually.

<script type="module">
import {ID} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.6.0/dist/modules/logging/handler/console.js';
console.log(new ConsoleHandler())
</script>