# How to log

**URL:** https://community.sendbird.com/t/how-to-log/5126
**Category:** .Net
**Tags:** chat-sdk
**Created:** [July 21, 2022, 5:53pm UTC](https://community.sendbird.com/t/how-to-log/5126 "2022-07-21T17:53:57Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Darius](https://avatars.discourse-cdn.com/v4/letter/d/58956e/32.png) [@Darius](https://community.sendbird.com/u/Darius)
#### Post date: [July 21, 2022, 5:53pm UTC](https://community.sendbird.com/t/how-to-log/5126/1 "2022-07-21T17:53:57Z")

</div>

I am using the latest SendBird.dll in my Xamarin.iOS project that I got from here:

> **[GitHub - sendbird/SendBird-SDK-dotNET: Sendbird Chat SDK for Unity for...](https://github.com/sendbird/Sendbird-SDK-dotNET)**
>
> Sendbird Chat SDK for Unity for enablement of a rich, engaging, scalable, and real-time chat service. - GitHub - sendbird/SendBird-SDK-dotNET: Sendbird Chat SDK for Unity for enablement of a rich, ...

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.

---

<div class="post-metadata">

### Author: ![ScottKim](https://sea2.discourse-cdn.com/flex020/user_avatar/community.sendbird.com/scottkim/32/3330_2.png) [@ScottKim](https://community.sendbird.com/u/ScottKim)
#### Post date: [August 5, 2022, 2:45am UTC](https://community.sendbird.com/t/how-to-log/5126/3 "2022-08-05T02:45:20Z")

</div>

Is the log not output anywhere else?  
[https://github.com/sendbird/SendBird-Xamarin](https://github.com/sendbird/SendBird-Xamarin)  
I know the current build SDK doesn’t work on IOS.
