Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for loggers (1.07 sec)

  1. internal/logger/targets.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package logger
    
    import (
    	"context"
    	"fmt"
    	"strings"
    	"sync"
    
    	"github.com/minio/minio/internal/logger/target/http"
    	"github.com/minio/minio/internal/logger/target/kafka"
    	"github.com/minio/minio/internal/logger/target/types"
    )
    
    // Target is the entity that we will receive
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

        private final StandardOutputRedirector.OutputListener stdErrListener = Mock()
        private final Logger logger1 = Logger.getLogger("")
        private final Logger logger2 = Logger.getLogger("hello")
        private final Logger logger3 = Logger.getLogger("hello.world")
        private static String savedJULConfigClassProperty = null;
    
        public static class DummyFormatter extends Formatter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. cmd/metrics-v3-logger-webhook.go

    		"Total number of messages sent to this target",
    		allWebhookLabels...)
    )
    
    // loadLoggerWebhookMetrics - `MetricsLoaderFn` for logger webhook
    // such as failed messages and total messages.
    func loadLoggerWebhookMetrics(ctx context.Context, m MetricValues, c *metricsCache) error {
    	tgts := append(logger.SystemTargets(), logger.AuditTargets()...)
    	for _, t := range tgts {
    		labels := []string{nameL, t.String(), endpointL, t.Endpoint()}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:27:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

        private final Logger logger;
    
        public HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy) {
            this(stats, strategy, LoggerFactory.getLogger(HealthExpirationStrategy.class));
        }
    
        HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy, Logger logger) {
            this.stats = stats;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (1)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

    import org.gradle.internal.nativeintegration.console.ConsoleMetaData;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.List;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;
    
    public class ProgressBar {
        private static final Logger LOGGER = LoggerFactory.getLogger(ProgressBar.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r23/StandardStreamsCrossVersionSpec.groovy

        def "logging is not sent to System.out or System.err"() {
            file("build.gradle") << """
    project.logger.error("error log message");
    project.logger.warn("warn log message");
    project.logger.lifecycle("lifecycle log message");
    project.logger.quiet("quiet log message");
    project.logger.info ("info log message");
    project.logger.debug("debug log message");
    
    task log {
        doLast {
            println "task log message"
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. cmd/logging.go

    	logger.Event(ctx, "iam", msg, args...)
    }
    
    func rebalanceLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "rebalance", err, errKind...)
    }
    
    func rebalanceLogEvent(ctx context.Context, msg string, args ...interface{}) {
    	logger.Event(ctx, "rebalance", msg, args...)
    }
    
    func adminLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "admin", err, errKind...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

    import org.slf4j.Logger;
    
    /**
     */
    class LoggingRepositoryListener extends AbstractRepositoryListener {
    
        private final Logger logger;
    
        LoggingRepositoryListener(Logger logger) {
            this.logger = logger;
        }
    
        @Override
        public void artifactInstalling(RepositoryEvent event) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 19:10:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	if match == nil || len(match) < 2 {
    		u.logger.Printf("Report name %q missing date", filepath.Base(fname))
    	} else if match[1] > today {
    		u.logger.Printf("Report date for %q is later than today (%s)", filepath.Base(fname), today)
    		return // report is in the future, which shouldn't happen
    	}
    	buf, err := os.ReadFile(fname)
    	if err != nil {
    		u.logger.Printf("%v reading %s", err, fname)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/integTest/resources/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest/loggingConfig/src/main/java/com/example/LumberJack.java

     */
    
    package com.example;
    
    import java.util.logging.Logger;
    
    public class LumberJack {
        private static final Logger ROOT = Logger.getLogger("");
        private static final Logger OAK = Logger.getLogger("oak");
        private static final Logger ELM = Logger.getLogger("elm");
        private static final Logger ELMER = Logger.getLogger("elm.er");
    
        public void sing() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top