Java Code Examples for org.gradle.api.logging.LogLevel#INFO
The following examples show how to use
org.gradle.api.logging.LogLevel#INFO .
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 |
/** * 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: BuildExceptionReporter.java From pushfish-android with BSD 2-Clause "Simplified" License | 6 votes |
private void fillInFailureResolution(FailureDetails details) { if (details.failure instanceof FailureResolutionAware) { ((FailureResolutionAware) details.failure).appendResolution(details.resolution, clientMetaData); if (details.resolution.getHasContent()) { details.resolution.append(' '); } } if (details.exceptionStyle == ExceptionStyle.NONE) { details.resolution.text("Run with "); details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.STACKTRACE_LONG); details.resolution.text(" option to get the stack trace. "); } if (loggingConfiguration.getLogLevel() != LogLevel.DEBUG) { details.resolution.text("Run with "); if (loggingConfiguration.getLogLevel() != LogLevel.INFO) { details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.INFO_LONG); details.resolution.text(" or "); } details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.DEBUG_LONG); details.resolution.text(" option to get more log output."); } }
Example 3
Source File: LogLevelConverter.java From pushfish-android with BSD 2-Clause "Simplified" License | 6 votes |
/** * 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: BuildExceptionReporter.java From pushfish-android with BSD 2-Clause "Simplified" License | 6 votes |
private void fillInFailureResolution(FailureDetails details) { if (details.failure instanceof FailureResolutionAware) { ((FailureResolutionAware) details.failure).appendResolution(details.resolution, clientMetaData); if (details.resolution.getHasContent()) { details.resolution.append(' '); } } if (details.exceptionStyle == ExceptionStyle.NONE) { details.resolution.text("Run with "); details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.STACKTRACE_LONG); details.resolution.text(" option to get the stack trace. "); } if (loggingConfiguration.getLogLevel() != LogLevel.DEBUG) { details.resolution.text("Run with "); if (loggingConfiguration.getLogLevel() != LogLevel.INFO) { details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.INFO_LONG); details.resolution.text(" or "); } details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.DEBUG_LONG); details.resolution.text(" option to get more log output."); } }
Example 5
Source File: LogLevelConverter.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 6 votes |
/** * 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 6
Source File: BuildExceptionReporter.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 6 votes |
private void fillInFailureResolution(FailureDetails details) { if (details.failure instanceof FailureResolutionAware) { ((FailureResolutionAware) details.failure).appendResolution(details.resolution, clientMetaData); if (details.resolution.getHasContent()) { details.resolution.append(' '); } } if (details.exceptionStyle == ExceptionStyle.NONE) { details.resolution.text("Run with "); details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.STACKTRACE_LONG); details.resolution.text(" option to get the stack trace. "); } if (loggingConfiguration.getLogLevel() != LogLevel.DEBUG) { details.resolution.text("Run with "); if (loggingConfiguration.getLogLevel() != LogLevel.INFO) { details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.INFO_LONG); details.resolution.text(" or "); } details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.DEBUG_LONG); details.resolution.text(" option to get more log output."); } }
Example 7
Source File: LogLevelConverter.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 6 votes |
/** * 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 8
Source File: BuildExceptionReporter.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 6 votes |
private void fillInFailureResolution(FailureDetails details) { if (details.failure instanceof FailureResolutionAware) { ((FailureResolutionAware) details.failure).appendResolution(details.resolution, clientMetaData); if (details.resolution.getHasContent()) { details.resolution.append(' '); } } if (details.exceptionStyle == ExceptionStyle.NONE) { details.resolution.text("Run with "); details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.STACKTRACE_LONG); details.resolution.text(" option to get the stack trace. "); } if (loggingConfiguration.getLogLevel() != LogLevel.DEBUG) { details.resolution.text("Run with "); if (loggingConfiguration.getLogLevel() != LogLevel.INFO) { details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.INFO_LONG); details.resolution.text(" or "); } details.resolution.withStyle(UserInput).format("--%s", LoggingCommandLineConverter.DEBUG_LONG); details.resolution.text(" option to get more log output."); } }
Example 9
Source File: ProviderConnection.java From pushfish-android with BSD 2-Clause "Simplified" License | 5 votes |
public void configure(ProviderConnectionParameters parameters) { LogLevel providerLogLevel = parameters.getVerboseLogging() ? LogLevel.DEBUG : LogLevel.INFO; LOGGER.debug("Configuring logging to level: {}", providerLogLevel); LoggingManagerInternal loggingManager = loggingServices.newInstance(LoggingManagerInternal.class); loggingManager.setLevel(providerLogLevel); loggingManager.start(); }
Example 10
Source File: ProviderConnection.java From pushfish-android with BSD 2-Clause "Simplified" License | 5 votes |
public void configure(ProviderConnectionParameters parameters) { LogLevel providerLogLevel = parameters.getVerboseLogging() ? LogLevel.DEBUG : LogLevel.INFO; LOGGER.debug("Configuring logging to level: {}", providerLogLevel); LoggingManagerInternal loggingManager = loggingServices.newInstance(LoggingManagerInternal.class); loggingManager.setLevel(providerLogLevel); loggingManager.start(); }
Example 11
Source File: ProviderConnection.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 5 votes |
public void configure(ProviderConnectionParameters parameters) { LogLevel providerLogLevel = parameters.getVerboseLogging() ? LogLevel.DEBUG : LogLevel.INFO; LOGGER.debug("Configuring logging to level: {}", providerLogLevel); LoggingManagerInternal loggingManager = loggingServices.newInstance(LoggingManagerInternal.class); loggingManager.setLevel(providerLogLevel); loggingManager.start(); }
Example 12
Source File: ProviderConnection.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 5 votes |
public void configure(ProviderConnectionParameters parameters) { LogLevel providerLogLevel = parameters.getVerboseLogging() ? LogLevel.DEBUG : LogLevel.INFO; LOGGER.debug("Configuring logging to level: {}", providerLogLevel); LoggingManagerInternal loggingManager = loggingServices.newInstance(LoggingManagerInternal.class); loggingManager.setLevel(providerLogLevel); loggingManager.start(); }
Example 13
Source File: LoggerWrapper.java From javaide with GNU General Public License v3.0 | 4 votes |
public LoggerWrapper(@NonNull Logger logger) { this(logger, LogLevel.INFO); }