Popularity
7.8
Growing
Activity
8.6
Growing
656
12
79

Code Quality Rank: L2
Programming language: Java
License: Apache License 2.0
Tags: Misc    
Latest version: v2.2.1

tinylog alternatives and similar libraries

Based on the "Misc" category.
Alternatively, view tinylog alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of tinylog or a related project?

Add another 'Misc' Library

README

tinylog 2

Build Code Coverage Maven Central Percentage of issues still open

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.