Can't print to consoe - tried every solution on the net

Hi
I cant see simple print or debug on the console

using UnityEngine;
using System.Collections;

public class Learningscript : MonoBehaviour {

public int health;

void start()

{
	Debug.Log("xxxxxxxxxxxxx: " + health);
	print("hi !");

}

void update()

{

}

}

  • Script is attached to object
  • Collaps is off, show warrnings and infos and everything is on in the console buttons
  • no errors about the script, erroes dose work.

Why I cant see the log printings ?

You have no Start method. The method names used by Unity (Start, Update, etc.) are case sensitive.

Try

void Start()

and

void Update()