Rocket
                                
                                
                                
                                    Rocket copied to clipboard
                            
                            
                            
                        option to add second Logger (as example sentry-log) to RocketLogger
Is your feature request motivated by a concrete problem?
I would like to use sentry-log to send errors from the log crate to sentry, without losing the RocketLog to stdout.
Why this feature can't or shouldn't live outside of Rocket
It is not possible to access the RocketLogger outside from Rocket.
Ideal Solution
Adding an option to add a generic to with does implanted log::Log as second logger. The RocketLogger can simple pass log events to this generic. This would also allow to use other loggers as sentry.
Alternatives Considered
Disabling the RocketLogger and use an alternative logger for logging to stdout. (But I like the RocketLogger and would like to keep using it)
Additional Context
I would like to implanted this, if this feature is wanted.