Is there any way that I can view my print statements in android studio without displaying the time and directory? It\'s extremely distracting and hard to debug when that text is
You should use Log.d(tag, message). See here for the documentation.
Log.d(tag, message)