Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nestedBuildLog (0.21 sec)

  1. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project1/build.gradle

            println 'A task message which is logged at INFO level'
        }
    }
    // END SNIPPET task-capture-stdout
    
    task nestedBuildLog(type: GradleBuild) {
        startParameter.currentDir = rootProject.file('nestedBuild')
        startParameter.taskNames = ['log']
    }
    
    task log(dependsOn: [logInfo, logLifecycle, nestedBuildLog]) {
        doLast {
            println('A task message which is logged at QUIET level')
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

                'LOGGER: evaluating :project2',
                'LOGGER: executing :project1:logInfo',
                'LOGGER: executing :project1:logLifecycle',
                'LOGGER: executing :project1:nestedBuildLog',
                'LOGGER: executing :project1:log'
            )
            info(
                'LOGGER: build finished',
                'LOGGER: evaluated project :',
                'LOGGER: evaluated project :project1',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top