Combining Multiple Logger Implementations into a Single Layer

Would it make sense to concat layers into a single one?
I'm trying to think through this use case. Essentially, we have a logger service and have multiple implementation (e.g console, some third party etc). Sometimes we'd want to log using one implementation or perhaps two, e.g combining console and another logger.

Does it make sense to model these as layers and if so is there any API to concat them into a single layer when both logger would be called?
Was this page helpful?