Back to project page slf4android.
The source code is released under:
MIT License
If you think the Android project slf4android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pl.brightinventions.slf4android; /*from w w w . java 2 s .c o m*/ class ConstLoggerValueSupplier implements LoggerPatternValueSupplier { private final String value; public ConstLoggerValueSupplier(String value) { this.value = value; } @Override public void append(LogRecord record, StringBuilder builder) { builder.append(value); } }