Uses of Interface
migratedb.v1.core.api.logging.LogSystem
-
Packages that use LogSystem Package Description migratedb.v1.core.api.configuration Interfaces for MigrateDB configurationmigratedb.v1.core.api.logging MigrateDB's log abstraction.migratedb.v1.core.internal.logging Private API. -
-
Uses of LogSystem in migratedb.v1.core.api.configuration
Methods in migratedb.v1.core.api.configuration that return LogSystem Modifier and Type Method Description LogSystemConfiguration. getLogger()LogSystemDefaultConfiguration. getLogger()LogSystemFluentConfiguration. getLogger()Methods in migratedb.v1.core.api.configuration with parameters of type LogSystem Modifier and Type Method Description FluentConfigurationFluentConfiguration. logger(LogSystem logger)The logger MigrateDB should use.voidDefaultConfiguration. setLogger(LogSystem logger)The log system MigrateDB should use. -
Uses of LogSystem in migratedb.v1.core.api.logging
Methods in migratedb.v1.core.api.logging that return LogSystem Modifier and Type Method Description static LogSystemLogSystems. autoDetect(ClassLoader classLoader, @Nullable LogSystem fallback)Auto-detects the "best" available log system and returns an instance of it.static LogSystemLogSystems. custom(String className, ClassLoader classLoader)Instantiates a class that implementsLogSystem.static LogSystemLogSystems. fromStrings(Set<String> logSystemNames, ClassLoader classLoader, @Nullable LogSystem fallback)Creates a log system that forwards logging calls to all log system names inlogSystemNames.Methods in migratedb.v1.core.api.logging with parameters of type LogSystem Modifier and Type Method Description static LogSystemLogSystems. autoDetect(ClassLoader classLoader, @Nullable LogSystem fallback)Auto-detects the "best" available log system and returns an instance of it.static LogSystemLogSystems. fromStrings(Set<String> logSystemNames, ClassLoader classLoader, @Nullable LogSystem fallback)Creates a log system that forwards logging calls to all log system names inlogSystemNames.static voidLog. setDefaultLogSystem(LogSystem defaultLogSystem)static <T> TLog. withLogSystem(LogSystem newLogSystem, Supplier<T> action)Runsactionusing the givennewLogSysteminstead of the default log system for the current thread. -
Uses of LogSystem in migratedb.v1.core.internal.logging
Classes in migratedb.v1.core.internal.logging that implement LogSystem Modifier and Type Class Description classApacheCommonsLogSystemclassJavaUtilLogSystemclassMultiLogSystemLog implementation that forwards method calls to multiple implementations.classNoLogSystemclassSlf4jLogSystemConstructor parameters in migratedb.v1.core.internal.logging with type arguments of type LogSystem Constructor Description MultiLogSystem(Collection<LogSystem> delegates)
-