where log.debug c# code example
Example 1: c# debug console log
using System.Diagnostics;
// print a message to the output window of the IDE
Debug.WriteLine("Debug Information");
Example 2: debug.log
Debug.Log("Whatever you want your output debug console to display in Unity");
// can take all types of values.
// and don't forget the semi-colon.