Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DebugLoggerWarningAction (0.29 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)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                                new WelcomeMessageAction(buildLayout, welcomeMessageConfiguration,
                                    new DebugLoggerWarningAction(loggingConfiguration, action))));
                    exceptionReportingAction.execute(executionListener);
                } finally {
                    loggingManager.stop();
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top