Groovy Documentation

org.gradle.api.logging
Enum LogLevel

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

enum LogLevel
extends java.lang.Enum

author:
Hans Dockter


Enum Constant Summary
DEBUG

ERROR

INFO

LIFECYCLE

QUIET

WARN

 
Method Summary
void log(java.lang.String message)

void log(java.lang.String message, java.lang.Throwable t)

LogLevel valueOf(java.lang.String name)

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

org.gradle.api.logging.LogLevel[] values()

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

 
Methods inherited from class java.lang.Enum
hashCode, compareTo, compareTo, equals, toString, name, valueOf, getDeclaringClass, ordinal, getClass, wait, wait, wait, notify, notifyAll
 
Methods inherited from class java.lang.Object
hashCode, getClass, equals, toString, wait, wait, wait, notify, notifyAll
 

Enum Constant Detail

DEBUG

LogLevel DEBUG


ERROR

LogLevel ERROR


INFO

LogLevel INFO


LIFECYCLE

LogLevel LIFECYCLE


QUIET

LogLevel QUIET


WARN

LogLevel WARN


 
Method Detail

log

public void log(java.lang.String message)


log

public void log(java.lang.String message, java.lang.Throwable t)


valueOf

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


values

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


 

Groovy Documentation