unity print to console

Code Example - unity print to console

                
                        // To print in the console use "Debug.Log()"
Debug.Log("Text");
                    
                
 

debug.log unity

                        
                                Debug.Log("Hello, World");
                            
                        
 

how do I print something in the console at the start of the game unity

                        
                                void Start() {
	Debug.Log("Hello world!")
}

// This code will print in the console "Hello world!" at the start of the game
                            
                        
 

Disable Debug.log Unity

                        
                                #if UNITY_EDITOR
 Debug.logger.logEnabled = true;
 #else
 Debug.logger.logEnabled = false;
 #endif
                            
                        
 

unity print

                        
                                print("Text you want to print");
                            
                        
 

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");