This interface is deprecated.
Logger interface is deprecated. Use adb shell setprop log.tag.GAv4 DEBUG to
enable debug logging for Google Analytics.
Deprecated Analytics Logger interface. Google Analytics will log to logcat under
GAv4 tag using Android Log system. By default
only ERROR, WARN and INFO levels are enabled. To enable DEBUG level run the following adb
command on your device or emulator:
adb shell setprop log.tag.GAv4 DEBUG
adb logcat -v time -s GAv4
| class | Logger.LogLevel | This class is deprecated. See Logger
interface for details. |
|
| abstract void | |
| abstract void | |
| abstract int |
getLogLevel()
This method is deprecated. See
Logger
interface for details.
|
| abstract void | |
| abstract void |
setLogLevel(int level)
This method is deprecated. See
Logger
interface for details.
|
| abstract void | |
| abstract void |
This method is deprecated.
See Logger
interface for details.
Used to log runtime errors or unexpected conditions. These errors will likely result in data not being sent to the GA servers.
| exception | The exception that was thrown that caused the error. |
|---|
This method is deprecated.
See Logger
interface for details.
Used to log runtime errors or unexpected conditions. These errors will likely result in data not being sent to the GA servers.
| message | A string describing the error that occurred. |
|---|
This method is deprecated.
See Logger
interface for details.
Return the current log level.
This method is deprecated.
See Logger
interface for details.
Used to log information on the flow through the system and other interesting events.
| message | the message to log |
|---|
This method is deprecated.
See Logger
interface for details.
Used to log detailed information. This information will probably only be useful during development and debugging.
| message | the message to log |
|---|
This method is deprecated.
See Logger
interface for details.
Used in situations like use of deprecated APIs, poor use of API, near errors, other runtime situations that are undesirable or unexpected, but not necessarily "wrong".
| message | the message to log |
|---|