TestLogger

In package com.nhaarman.acorn.testing

class com.nhaarman.acorn.testing.TestLogger

A Logger implementation that outputs its logs to standard out.

Constructors

constructor()

A Logger implementation that outputs its logs to standard out.

Parameters:
  • No parameters

Methods

fun v(tag: String, message: Any?)

Log a verbose message with given tag.

Parameters:
  • tag: String
  • message: Any?
fun d(tag: String, message: Any?)

Log a debug message with given tag.

Parameters:
  • tag: String
  • message: Any?
fun i(tag: String, message: Any?)

Log an informational message with given tag.

Parameters:
  • tag: String
  • message: Any?
fun w(tag: String, message: Any?)

Log a warning message with given tag.

Parameters:
  • tag: String
  • message: Any?
fun e(tag: String, message: Any?)

Log an error message with given tag.

Parameters:
  • tag: String
  • message: Any?