コード例 #1
0
 // 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);
 }
コード例 #2
0
 private void M_vungle_Diagnostic(object sender, DiagnosticLogEvent e)
 {
     VungleDiagnosticEvent?.Invoke(e.Message);
 }