Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 945 Bytes

File metadata and controls

29 lines (17 loc) · 945 Bytes

Logging

Overview

The Logging service provides shared functionality to write messages to the console.

Declaration

public interface Logging {}

Usage

While you can access the Logging service directly via the ServiceProvider, it is recommended to use the wrapper class, Log. This class can be used to read and write messages to the console.

Java

Log.debug("label1", "label2", "My log message");

Kotlin

Log.debug("label1", "label2", "My log message")

APIs

For a full list of APIs provided by the Logging service, see Logging.java and for a complete list of APIs provided by the wrapper class, see Log.java.