Searched defs:msgSupplier (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/logging/
H A DLogger.java112 * A set of methods alternatively take a "msgSupplier" instead of a "msg"
806 * @param msgSupplier A function, which when called, produces the
810 public void log(Level level, Supplier<String> msgSupplier) { argument
814 LogRecord lr = new LogRecord(level, msgSupplier.get());
899 * @param msgSupplier A function, which when called, produces the
903 public void log(Level level, Throwable thrown, Supplier<String> msgSupplier) { argument
907 LogRecord lr = new LogRecord(level, msgSupplier.get());
951 * @param msgSupplier A function, which when called, produces the
956 Supplier<String> msgSupplier) {
960 LogRecord lr = new LogRecord(level, msgSupplier
955 logp(Level level, String sourceClass, String sourceMethod, Supplier<String> msgSupplier) argument
1072 logp(Level level, String sourceClass, String sourceMethod, Throwable thrown, Supplier<String> msgSupplier) argument
1568 severe(Supplier<String> msgSupplier) argument
1585 warning(Supplier<String> msgSupplier) argument
1602 info(Supplier<String> msgSupplier) argument
1619 config(Supplier<String> msgSupplier) argument
1636 fine(Supplier<String> msgSupplier) argument
1653 finer(Supplier<String> msgSupplier) argument
1670 finest(Supplier<String> msgSupplier) argument
[all...]

Completed in 51 milliseconds