Class FmtLog

java.lang.Object
org.apache.jena.atlas.logging.FmtLog

public class FmtLog extends Object
Logging with String.format (which can be a expensive) The formatting operations are not designed specifically for performance, but they do delay forming strings for output until it is know that a log message is actually required by level setting. An odd effect is order of the arguments - vararg arguments must be last so the order is Logger/Throwable?/Format/args. Also support: Class object instead of logger to help ad hoc usage.