Java Code Examples for org.gradle.api.logging.LogLevel#QUIET

The following examples show how to use org.gradle.api.logging.LogLevel#QUIET . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LogLevelConverter.java    From pushfish-android with BSD 2-Clause "Simplified" License 6 votes vote down vote up
/**
 * Maps a Logback log level and optional marker to a Gradle log level.
 * Returns null if there is no equivalent Gradle log level (such as for TRACE).
 */
@Nullable
public static LogLevel toGradleLogLevel(Level level, @Nullable Marker marker) {
    switch(level.toInt()) {
        case Level.TRACE_INT:
            return null;
        case Level.DEBUG_INT:
            return LogLevel.DEBUG;
        case Level.INFO_INT:
            if (marker == Logging.LIFECYCLE) {
                return LogLevel.LIFECYCLE;
            }
            if (marker == Logging.QUIET) {
                return LogLevel.QUIET;
            }
            return LogLevel.INFO;
        case Level.WARN_INT:
            return LogLevel.WARN;
        case Level.ERROR_INT:
            return LogLevel.ERROR;
        default:
            throw new IllegalArgumentException("Don't know how to map Logback log level '" + level + "' to a Gradle log level");
    }
}
 
Example 2
Source File: LogLevelConverter.java    From pushfish-android with BSD 2-Clause "Simplified" License 6 votes vote down vote up
/**
 * Maps a Logback log level and optional marker to a Gradle log level.
 * Returns null if there is no equivalent Gradle log level (such as for TRACE).
 */
@Nullable
public static LogLevel toGradleLogLevel(Level level, @Nullable Marker marker) {
    switch(level.toInt()) {
        case Level.TRACE_INT:
            return null;
        case Level.DEBUG_INT:
            return LogLevel.DEBUG;
        case Level.INFO_INT:
            if (marker == Logging.LIFECYCLE) {
                return LogLevel.LIFECYCLE;
            }
            if (marker == Logging.QUIET) {
                return LogLevel.QUIET;
            }
            return LogLevel.INFO;
        case Level.WARN_INT:
            return LogLevel.WARN;
        case Level.ERROR_INT:
            return LogLevel.ERROR;
        default:
            throw new IllegalArgumentException("Don't know how to map Logback log level '" + level + "' to a Gradle log level");
    }
}
 
Example 3
Source File: LogLevelConverter.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 6 votes vote down vote up
/**
 * Maps a Logback log level and optional marker to a Gradle log level.
 * Returns null if there is no equivalent Gradle log level (such as for TRACE).
 */
@Nullable
public static LogLevel toGradleLogLevel(Level level, @Nullable Marker marker) {
    switch(level.toInt()) {
        case Level.TRACE_INT:
            return null;
        case Level.DEBUG_INT:
            return LogLevel.DEBUG;
        case Level.INFO_INT:
            if (marker == Logging.LIFECYCLE) {
                return LogLevel.LIFECYCLE;
            }
            if (marker == Logging.QUIET) {
                return LogLevel.QUIET;
            }
            return LogLevel.INFO;
        case Level.WARN_INT:
            return LogLevel.WARN;
        case Level.ERROR_INT:
            return LogLevel.ERROR;
        default:
            throw new IllegalArgumentException("Don't know how to map Logback log level '" + level + "' to a Gradle log level");
    }
}
 
Example 4
Source File: LogLevelConverter.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 6 votes vote down vote up
/**
 * Maps a Logback log level and optional marker to a Gradle log level.
 * Returns null if there is no equivalent Gradle log level (such as for TRACE).
 */
@Nullable
public static LogLevel toGradleLogLevel(Level level, @Nullable Marker marker) {
    switch(level.toInt()) {
        case Level.TRACE_INT:
            return null;
        case Level.DEBUG_INT:
            return LogLevel.DEBUG;
        case Level.INFO_INT:
            if (marker == Logging.LIFECYCLE) {
                return LogLevel.LIFECYCLE;
            }
            if (marker == Logging.QUIET) {
                return LogLevel.QUIET;
            }
            return LogLevel.INFO;
        case Level.WARN_INT:
            return LogLevel.WARN;
        case Level.ERROR_INT:
            return LogLevel.ERROR;
        default:
            throw new IllegalArgumentException("Don't know how to map Logback log level '" + level + "' to a Gradle log level");
    }
}
 
Example 5
Source File: DefaultLoggingManager.java    From pushfish-android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public DefaultLoggingManager(LoggingSystem loggingSystem, LoggingSystem stdOutLoggingSystem,
                             LoggingSystem stdErrLoggingSystem, LoggingOutputInternal loggingOutput) {
    this.loggingOutput = loggingOutput;
    this.loggingSystem = new StartableLoggingSystem(loggingSystem, null);
    this.stdOutLoggingSystem = new StartableLoggingSystem(stdOutLoggingSystem, LogLevel.QUIET);
    this.stdErrLoggingSystem = new StartableLoggingSystem(stdErrLoggingSystem, LogLevel.ERROR);
}
 
Example 6
Source File: GradleRunnerInteractionWrapper.java    From pushfish-android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * @return the log level. This determines the detail level of information reported via reportLiveOutput and reportExecutionFinished.
 */
public LogLevel getLogLevel() {
    GradleRunnerInteractionVersion1.LogLevel logLevel = interactionVersion1.getLogLevel();
    switch (logLevel) {
        case Quiet:
            return LogLevel.QUIET;
        case Lifecycle:
            return LogLevel.LIFECYCLE;
        case Debug:
            return LogLevel.DEBUG;
    }

    return LogLevel.LIFECYCLE;
}
 
Example 7
Source File: DefaultLoggingManager.java    From pushfish-android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public DefaultLoggingManager(LoggingSystem loggingSystem, LoggingSystem stdOutLoggingSystem,
                             LoggingSystem stdErrLoggingSystem, LoggingOutputInternal loggingOutput) {
    this.loggingOutput = loggingOutput;
    this.loggingSystem = new StartableLoggingSystem(loggingSystem, null);
    this.stdOutLoggingSystem = new StartableLoggingSystem(stdOutLoggingSystem, LogLevel.QUIET);
    this.stdErrLoggingSystem = new StartableLoggingSystem(stdErrLoggingSystem, LogLevel.ERROR);
}
 
Example 8
Source File: DefaultLoggingManager.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public DefaultLoggingManager(LoggingSystem loggingSystem, LoggingSystem stdOutLoggingSystem,
                             LoggingSystem stdErrLoggingSystem, LoggingOutputInternal loggingOutput) {
    this.loggingOutput = loggingOutput;
    this.loggingSystem = new StartableLoggingSystem(loggingSystem, null);
    this.stdOutLoggingSystem = new StartableLoggingSystem(stdOutLoggingSystem, LogLevel.QUIET);
    this.stdErrLoggingSystem = new StartableLoggingSystem(stdErrLoggingSystem, LogLevel.ERROR);
}
 
Example 9
Source File: GradleRunnerInteractionWrapper.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * @return the log level. This determines the detail level of information reported via reportLiveOutput and reportExecutionFinished.
 */
public LogLevel getLogLevel() {
    GradleRunnerInteractionVersion1.LogLevel logLevel = interactionVersion1.getLogLevel();
    switch (logLevel) {
        case Quiet:
            return LogLevel.QUIET;
        case Lifecycle:
            return LogLevel.LIFECYCLE;
        case Debug:
            return LogLevel.DEBUG;
    }

    return LogLevel.LIFECYCLE;
}
 
Example 10
Source File: DefaultLoggingManager.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public DefaultLoggingManager(LoggingSystem loggingSystem, LoggingSystem stdOutLoggingSystem,
                             LoggingSystem stdErrLoggingSystem, LoggingOutputInternal loggingOutput) {
    this.loggingOutput = loggingOutput;
    this.loggingSystem = new StartableLoggingSystem(loggingSystem, null);
    this.stdOutLoggingSystem = new StartableLoggingSystem(stdOutLoggingSystem, LogLevel.QUIET);
    this.stdErrLoggingSystem = new StartableLoggingSystem(stdErrLoggingSystem, LogLevel.ERROR);
}