* If i have a bootloader application and i want to use rtt inside of the boot loader as well as the application that it loads what would be the correct way to do that. ``` use defmt_rtt as _; ``` inside both applications leads to broken logging. If i initialize only inside of the loaded application it works fine but then i can't log from the bootloader. If i initialize from the bootloader and attempt to use defmt inside of my application i get link errors