Groovy Documentation

org.gradle.api.logging
Enum LogLevel

java.lang.Object
  org.gradle.api.logging.LogLevel

enum LogLevel

author:
Hans Dockter


Enum Constant Summary
DEBUG

ERROR

INFO

LIFECYCLE

PROGRESS

QUIET

WARN

 
Method Summary
boolean isEnabled(Logger logger)

void log(Logger logger, java.lang.String message)

void log(Logger logger, java.lang.String message, java.lang.Object objects)

void log(Logger logger, java.lang.String message, java.lang.Throwable throwable)

LogLevel valueOf(java.lang.String name)

Returns the enum constant of this type with the specified name.

LogLevel[] values()

Returns an array containing the constants of this enum type, in the order they are declared.

 
Methods inherited from class java.lang.Object
wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll
 

Enum Constant Detail

DEBUG

LogLevel DEBUG


ERROR

LogLevel ERROR


INFO

LogLevel INFO


LIFECYCLE

LogLevel LIFECYCLE


PROGRESS

LogLevel PROGRESS


QUIET

LogLevel QUIET


WARN

LogLevel WARN


 
Method Detail

isEnabled

public boolean isEnabled(Logger logger)
author:
Hans Dockter


log

public void log(Logger logger, java.lang.String message)


log

public void log(Logger logger, java.lang.String message, java.lang.Object objects)


log

public void log(Logger logger, java.lang.String message, java.lang.Throwable throwable)


valueOf

LogLevel valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.


values

LogLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared.


 

Groovy Documentation