AkaJack
AkaJack

Reputation: 43

how to see text log in Log.d() command in android studio 4.0

in onCreate function, i have command log, but android studio 4.0 had not Android Monitor window. How to i see text in Log.d() command.

protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

    
        Log.d("function:","onCreate in main acitivity");
    }

Upvotes: 0

Views: 38

Answers (1)

FarshidABZ
FarshidABZ

Reputation: 4123

It is not about Android studio 4.0. just google it before asking.

however, you can see all logs in the Logcat.

enter image description here

Upvotes: 1

Related Questions