I am using the latest SendBird.dll in my Xamarin.iOS project that I got from here:
My app keeps crashing so would like to see logs from the SDK that I am using. I am trying to do so like this:
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
// other code…
SendBird.SendBirdClient.Log = SendBirdLog;
return true;
}
private void SendBirdLog(string message)
{
// this never gets called
Console.WriteLine(message);
}
But my SendBirdLog function never gets called.