Logging
LogDog offers 2 simple ways to capture your logs.
Logging via LogDog Logger
To use it make sure you import LogDog in any file where this will be used. This method is helpful if you want to explicitly log to LogDog.
LogDog.i("TEST", "Info Log")
LogDog.d("TEST", "Debug Log")
LogDog.w("TEST", "Warning Log")
LogDog.e("TEST", "Error Log")
Logging via Android Log
LogDog can also capture your logs from the default log library of Android (android.util.Log). Unlike the previous solution this works out of the box and without any code changes within your application.
Log.i("TEST", "Info Log")
Log.d("TEST", "Debug Log")
Log.w("TEST", "Warning Log")
Log.e("TEST", "Error Log")
Every log will immediately appear in your LogDog dashboard.