How to send A Log message to the Android Logcat ?

So when you debug in Unity usually you do this.
This is fine when you want to check your game behavior.

Debug.Log("Display Message in the Unity Console")

But what about Android ? How can you Show Debug Message to the Android LogCat
I’m Writing a game that uses external libraries in Android I know I can use The Android Device monitor to show the Logs from the SDKs, but how can you send your custom Message something like

public void showMessageAndroidLogCat(string text)
{
  Android.Debug.Log(Text);
}

And after this display the message in the LogCat Console or Android monitor ?

All messages you log in your Unity code using Debug.Log will show up in logcat