use of org.gradle.internal.logging.LoggingManagerInternal in project gradle by gradle.
the class SystemApplicationClassLoaderWorker method createLoggingManager.
LoggingManagerInternal createLoggingManager(LoggingServiceRegistry loggingServiceRegistry) {
LoggingManagerInternal loggingManagerInternal = loggingServiceRegistry.newInstance(LoggingManagerInternal.class);
loggingManagerInternal.captureSystemSources();
return loggingManagerInternal;
}
Aggregations