Created
May 13, 2020 17:19
-
-
Save TheLittleNaruto/1d86664d1b0db376779a0868be9db16b to your computer and use it in GitHub Desktop.
Example on Logging for Medium article blog on Logging and debugging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MainActivity : AppCompatActivity() { | |
companion object { | |
val TAG = MainActivity::class.java.simpleName | |
} | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(R.layout.activity_main) | |
if (Log.isLoggable(TAG, Log.DEBUG)) { | |
Log.d(TAG, "$TAG=> onCreate()") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment