// Event handler called when SDK wants to print diagnostic logs private void SdkInstance_Diagnostic(object sender, DiagnosticLogEvent e) { System.Diagnostics.Debug.WriteLine(e.Level + " " + e.Type + " " + e.Exception + " " + e.Message); }
private void M_vungle_Diagnostic(object sender, DiagnosticLogEvent e) { VungleDiagnosticEvent?.Invoke(e.Message); }