tinylog alternatives and similar libraries
Based on the "Logging" category.
Alternatively, view tinylog alternatives based on common mentions on social networks and blogs.
-
logstash
Logstash - transport and process your logs, events, or other data -
Apache Log4j 2
Apache Log4j 2 is a versatile, feature-rich, efficient logging API and backend for Java. -
Logback
The reliable, generic, fast and flexible logging framework for Java. -
Logbook
An extensible Java library for HTTP request and response logging
Collect and Analyze Billions of Data Points in Real Time
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of tinylog or a related project?
Popular Comparisons
README
tinylog 2
Example
import org.tinylog.Logger;
public class Application {
public static void main(String[] args) {
Logger.info("Hello {}!", "world");
}
}
Outputting log entries to the console and rolling log files via tinylog.properties
level = INFO
writer1 = console
writer1.format = {date: HH:mm:ss.SSS} {class}.{method}() {level}: {message}
writer2 = rolling file
writer2.file = logs/{date: yyyy-MM-dd}/log_{count}.txt
writer2.policies = startup, daily: 03:00
writer2.format = {date: HH:mm:ss} [{thread}] {level}: {message}
More information about tinylog including a detailed user manual and the Javadoc documentation can be found on https://tinylog.org/v2/.
Contributing
On GitHub, issues and pull requests are always welcome :)
For building tinylog or contributing to this project, please take a look at [contributing.md](./contributing.md).
License
Copyright 2016-2022 Martin Winandy
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*Note that all licence references and agreements mentioned in the tinylog README section above
are relevant to that project's source code only.