Odpowiedzi:
Dzieje się tak przez właściwość systemu
-Dorg.slf4j.simpleLogger.defaultLogLevel=debug
lub simplelogger.properties
plik w ścieżce klas
zobacz http://www.slf4j.org/api/org/slf4j/impl/SimpleLogger.html, aby uzyskać szczegółowe informacje
defaultLogLevel
) działa. Właśnie znalazłem, że modyfikowałem program w złym folderze ;-) I defaultlog
nie działa. Więc prawdopodobnie chcesz zmienić swoją odpowiedź, chociaż ją zaakceptowałem
To jest próbka, simplelogger.properties
którą możesz umieścić na ścieżce klas (odkomentuj właściwości, których chcesz użyć):
# SLF4J's SimpleLogger configuration file
# Simple implementation of Logger that sends all enabled log messages, for all defined loggers, to System.err.
# Default logging detail level for all instances of SimpleLogger.
# Must be one of ("trace", "debug", "info", "warn", or "error").
# If not specified, defaults to "info".
#org.slf4j.simpleLogger.defaultLogLevel=info
# Logging detail level for a SimpleLogger instance named "xxxxx".
# Must be one of ("trace", "debug", "info", "warn", or "error").
# If not specified, the default logging detail level is used.
#org.slf4j.simpleLogger.log.xxxxx=
# Set to true if you want the current date and time to be included in output messages.
# Default is false, and will output the number of milliseconds elapsed since startup.
#org.slf4j.simpleLogger.showDateTime=false
# The date and time format to be used in the output messages.
# The pattern describing the date and time format is the same that is used in java.text.SimpleDateFormat.
# If the format is not specified or is invalid, the default format is used.
# The default format is yyyy-MM-dd HH:mm:ss:SSS Z.
#org.slf4j.simpleLogger.dateTimeFormat=yyyy-MM-dd HH:mm:ss:SSS Z
# Set to true if you want to output the current thread name.
# Defaults to true.
#org.slf4j.simpleLogger.showThreadName=true
# Set to true if you want the Logger instance name to be included in output messages.
# Defaults to true.
#org.slf4j.simpleLogger.showLogName=true
# Set to true if you want the last component of the name to be included in output messages.
# Defaults to false.
#org.slf4j.simpleLogger.showShortLogName=false
org.slf4j.simpleLogger.logFile
- docelowy wynik, którym może być ścieżka do pliku lub specjalne wartości „System.out” i „System.err”. Domyślnie jest to „System.err”. Zobacz slf4j.org/api/org/slf4j/impl/SimpleLogger.html
Możesz to zmienić programowo, ustawiając właściwość systemową:
public class App {
public static void main(String[] args) {
System.setProperty(org.slf4j.impl.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "TRACE");
final org.slf4j.Logger log = LoggerFactory.getLogger(App.class);
log.trace("trace");
log.debug("debug");
log.info("info");
log.warn("warning");
log.error("error");
}
}
Poziomy dziennika to ERROR> WARN> INFO> DEBUG> TRACE.
Należy pamiętać, że po utworzeniu rejestratora nie można zmienić poziomu dziennika. Jeśli chcesz dynamicznie zmieniać poziom rejestrowania, możesz użyć log4j z SLF4J.
org.slf4j.impl.SimpleLogger
Masz na myśli rzeczywisty kod źródłowy, a nie dokument?
LOG_FILE_KEY
właściwości nie można zmienić po utworzeniu programu rejestrującego?
Zauważyłem, że Eemuli powiedział, że nie możesz zmienić poziomu dziennika po ich utworzeniu - i chociaż może to być projekt, nie jest to do końca prawda.
Wpadłem w sytuację, w której korzystałem z biblioteki, która logowała się do slf4j - i korzystałem z tej biblioteki podczas pisania wtyczki maven mojo.
Maven używa (zhakowanej) wersji Slf4j SimpleLogger i nie udało mi się uzyskać kodu mojej wtyczki, aby przekierować jego logowanie do czegoś takiego jak log4j, nad którym mogłem kontrolować.
I nie mogę zmienić konfiguracji logowania Mavena.
Tak więc, aby uciszyć niektóre hałaśliwe komunikaty informacyjne, odkryłem, że mogę użyć refleksji w ten sposób, aby futz z SimpleLogger w czasie wykonywania.
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.spi.LocationAwareLogger;
try
{
Logger l = LoggerFactory.getLogger("full.classname.of.noisy.logger"); //This is actually a MavenSimpleLogger, but due to various classloader issues, can't work with the directly.
Field f = l.getClass().getSuperclass().getDeclaredField("currentLogLevel");
f.setAccessible(true);
f.set(l, LocationAwareLogger.WARN_INT);
}
catch (Exception e)
{
getLog().warn("Failed to reset the log level of " + loggerName + ", it will continue being noisy.", e);
}
Oczywiście, zauważ, że nie jest to bardzo stabilne / niezawodne rozwiązanie ... ponieważ zepsuje się następnym razem, gdy ludzie-maven zmienią swój rejestrator.