Execute our coroutine by StartCoroutine() method. And paste image URL as argument.
private void Start()
{
// I found random image from internet and copied the URL:
StartCoroutine(DownloadImage("https://www.sunhome.ru/i/wallpapers/221/frukti-oboi.orig.jpg"));
}
Open console by ` and you can see that messages are displayed in Console window and in Logchain window as well
Hidden messages
Hidden messages are hidden in Console (but not hidden in Logchain window)
Lets take our last example with downloading image. If we will download images many times we will have many messages in Console. But we can organize it better! We can hide logs in Console but keep them visible in Logchain window. You just need to set last argument hidden of TIM.Console.Log() function to true: