unity send message to console code example
Example 1: unity print to console
// To print in the console use "Debug.Log()"
Debug.Log("Text");
Example 2: unity send message to console
// This Command Prints any Desired Message Into The Console
// "InsertTextHere" is just for example, thats where your desired text goes.
Debug.Log("InsertTextHere");