Hi,
*This behavior is sort of similar how Sentry Android works, if that helps. *
I have declared a custom log category as DECLARE_LOG_CATEGORY_EXTERN(LogDuoGame, Verbose, All); && DEFINE_LOG_CATEGORY(LogDuoGame);.
I have these log calls scattered throughout, with various verbosity levels such as Error, Log, or Verbose.
I'd like to "hook" into these log messages, so that essentially whenever I reach code like UE_LOG(LogDuoGame, Error, TEXT("%s 'ConnectionTimeout' error occurred."), *GetNameSafe(this));, sentry automatically would capture that and send it to my dashboard, similarly as if I were to do SentrySubsytem->CaptureMessage(body, verbosity); after each.
I've worked with Sentry Android extensively in the past and that seems to do just this, and I've come to really love it. I'm hoping this can be achieved here too.