tinylog alternatives and similar packages
Based on the "Extensions" category.
Alternatively, view tinylog alternatives based on common mentions on social networks and blogs.
-
Enumeratum
A type-safe, reflection-free, powerful enumeration implementation for Scala with exhaustive pattern match warnings and helpful integrations. -
Scala Graph
Graph for Scala is intended to provide basic graph functionality seamlessly fitting into the Scala Collection Library. Like the well known members of scala.collection, Graph for Scala is an in-memory graph library aiming at editing and traversing graphs, finding cycles etc. in a user-friendly way. -
scribe
The fastest logging library in the world. Built from scratch in Scala and programmatically configurable. -
Rapture
DISCONTINUED. a collection of libraries for common, everyday programming tasks (I/O, JSON, i18n, etc.) -
Lamma
Lamma schedule generator for Scala is a professional schedule generation library for periodic schedules like fixed income coupon payment, equity deravitive fixing date generation etc. -
wvlet-log
DISCONTINUED. A library for enhancing your application logs with colors and source code locations. -
Resolvable
DISCONTINUED. A library to optimize fetching immutable data structures from several endpoints in several formats.
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of tinylog or a related project?
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.