Debug.log

Hello i am coding my game right now but i gettin a realy big probleme… i think the Debug.Log dosnt work i tryed advanced debugs and thos really simple once like

	void Start () {
		Debug.Log ("Heeki");
	}

And you are reading your console?

If a debug.log, tho I use prints, does not print, it means the is an error prior to the message.

Start() only gets called if the component its on is enabled ( before the first Update() call ). If thats not the issue you may want to check if you’ve got ‘collapse’ turned on in the console window.