Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DebugLoggerWarningAction (0.3 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DebugLoggerWarningAction.java

        private final Action<ExecutionListener> action;
    
        DebugLoggerWarningAction(
            LoggingConfiguration loggingConfiguration,
            Action<ExecutionListener> action
        ) {
            this(Logging.getLogger(DebugLoggerWarningAction.class), loggingConfiguration, action);
        }
    
        @VisibleForTesting
        DebugLoggerWarningAction(
            Logger logger,
            LoggingConfiguration loggingConfiguration,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DebugLoggerWarningActionTest.groovy

            listener = Mock()
        }
    
        private DebugLoggerWarningAction createDebugLoggerWarning() {
            return new DebugLoggerWarningAction(log, loggingConfiguration, delegateAction)
        }
    
        private void assertDoublePrintInOutput(String output) {
            // This should exist twice
            assert output.count(DebugLoggerWarningAction.WARNING_MESSAGE_BODY) == 2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top