'Use of Log.d(TAG, Oncreate) in android studio JAVA

I am getting an error while trying to write the following code: The error is mainly about the log.d(Tag, "Oncreate"); error is as follows error: cannot find symbol Log.d(TAG,"onCreate"); ^ protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    Log.d(TAG,"onCreate");
    int diff = getIntent().getIntExtra(KEY_DIFFICULTY,DIFFICULTY_EASY);
    puzzle = getPuzzle(diff);
    calculatedUsedTiles();
    puzzleView = new PuzzleView(this);
    setContentView(puzzleView);
    puzzleView.requestFocus();

}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source