it would be great to have a specific logger directive which supports f-string like arguments like:
!log("Current Bank selected: {VIC.BANK} in iteration {i}")
Workaround using a plugin:
module.exports = {
debug: ({}, args) => {
console.log(args);
}
}
!!utils.debug(["Current Bank selected:", VIC.BANK, "in iteration", i])
it would be great to have a specific logger directive which supports f-string like arguments like:
Workaround using a plugin: