Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,926 for loggers (0.15 sec)

  1. 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)
  2. logger/logger.go

    type Writer interface {
    	Printf(string, ...interface{})
    }
    
    // Config logger config
    type Config struct {
    	SlowThreshold             time.Duration
    	Colorful                  bool
    	IgnoreRecordNotFoundError bool
    	ParameterizedQueries      bool
    	LogLevel                  LogLevel
    }
    
    // Interface logger interface
    type Interface interface {
    	LogMode(LogLevel) Interface
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:19:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/Logger.java

     * See <a href="https://docs.gradle.org/current/userguide/logging.html#sec:debug_security">our recommendations</a> for more information.
     * </p>
     */
    public interface Logger extends org.slf4j.Logger {
        /**
         * Returns true if lifecycle log level is enabled for this logger.
         */
        boolean isLifecycleEnabled();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/Logger.kt

     */
    
    package org.gradle.kotlin.dsl.support
    
    import org.slf4j.Logger
    import org.slf4j.LoggerFactory
    
    
    internal
    inline fun <reified T : Any> loggerFor(): Logger =
        LoggerFactory.getLogger(T::class.java)
    
    
    internal
    inline fun Logger.trace(msg: () -> String) {
        if (isTraceEnabled) trace(msg())
    }
    
    
    internal
    inline fun Logger.debug(msg: () -> String) {
        if (isDebugEnabled) debug(msg())
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. fastapi/logger.py

    import logging
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Dec 09 19:02:44 UTC 2019
    - 54 bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Logger.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.wrapper;
    
    public class Logger implements Appendable {
    
        private final boolean quiet;
    
        public Logger(boolean quiet) {
            this.quiet = quiet;
        }
    
        public void log(String message) {
            if (!quiet) {
                System.out.println(message);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. internal/logger/logger.go

    	if len(systemTgts) == 0 {
    		return
    	}
    
    	// Iterate over all logger targets to send the log entry
    	for _, t := range systemTgts {
    		if err := t.Send(ctx, entry); err != nil {
    			if consoleTgt != nil { // Sending to the console never fails
    				entry.Trace.Message = fmt.Sprintf("event(%#v) was not sent to Logger target (%#v): %#v", entry, t, err)
    				consoleTgt.Send(ctx, entry)
    			}
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/custom-logger-init.gradle

            logger.info("LOGGER: evaluated project $project.path")
        }
    
        public void beforeExecute(Task task) {
            logger.lifecycle("LOGGER: executing $task.path")
        }
    
        public void afterExecute(Task task, TaskState state) {
            logger.info("LOGGER: executed task $task.path")
        }
    
        public void beforeActions(Task task) {
            logger.info("LOGGER: task $task.path starting work")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    threshold; private int currentThreshold; private java.util.Map loggers; private int loggerCount; private boolean bootTimeLogger; public void ConsoleLoggerManager(); public void ConsoleLoggerManager(String); public void initialize(); public void setThreshold(int); public void setThresholds(int); public int getThreshold(); public void setThreshold(String, String, int); public int getThreshold(String, String); public org.codehaus.plexus.logging.Logger createLogger(int, String); public org.codehaus.plexus.logging.Logger...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/logger.go

    zirain <******@****.***> 1684861711 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top