Package | Description |
---|---|
org.tinylog.core |
tinylog 2 native implementation.
|
org.tinylog.writers |
Writers for outputting log entries.
|
Modifier and Type | Method | Description |
---|---|---|
java.util.Collection<Writer>[][] |
TinylogLoggingConfiguration.createWriters(java.util.List<java.lang.String> tags,
org.tinylog.Level minimumLevel,
boolean writingThread) |
Creates a two-dimensional matrix with all configured writers.
|
static java.util.Collection<Writer> |
TinylogLoggingConfiguration.getAllWriters(java.util.Collection<Writer>[][] matrix) |
Collects all writer instances from a matrix of writers.
|
java.util.Collection<Writer> |
TinylogLoggingProvider.getWriters() |
Gets all writers of the provider.
|
java.util.Collection<Writer> |
TinylogLoggingProvider.getWriters(java.lang.String tag) |
Gets all writers of the provider which belong to the given tag.
|
java.util.Collection<Writer> |
TinylogLoggingProvider.getWriters(java.lang.String tag,
org.tinylog.Level level) |
Gets all writers which belong to the given tag and a given level.
|
Modifier and Type | Method | Description |
---|---|---|
void |
WritingThread.add(Writer writer,
LogEntry logEntry) |
Adds a log entry for writing.
|
protected void |
TinylogLoggingConfiguration.addWriter(Writer writer,
java.util.Collection<Writer>[][] matrix,
int tagIndex,
org.tinylog.Level level) |
Adds a writer to a well-defined matrix.
|
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractFileBasedWriter |
Base writer for outputting log entries into files.
|
class |
AbstractFormatPatternWriter |
Base writer for outputting rendered log entries.
|
class |
AbstractWriter |
|
class |
ConsoleWriter |
Writer for outputting log entries to system output streams.
|
class |
FileWriter |
Writer for outputting log entries to a log file.
|
class |
JdbcWriter |
Writer for inserting log entries into an SQL database table.
|
class |
JsonWriter |
Writer for outputting log entries to a log file in JSON format.
|
class |
LogcatWriter |
Writer for redirecting log entries to Android's logcat.
|
class |
RollingFileWriter |
Writer for outputting log entries to rolling log files.
|
class |
SharedFileWriter |
Writer for outputting log entries to a shared log file.
|
Copyright © 2022. All rights reserved.