tinylog alternatives and similar packages
Based on the "Extensions" category.
Alternatively, view tinylog alternatives based on common mentions on social networks and blogs.
-
cats
Lightweight, modular, and extensible library for functional programming. -
Cassovary
Cassovary is a simple big graph processing library for the JVM -
scala.meta
Library to read, analyze, transform and generate Scala programs -
Enumeratum
A type-safe, reflection-free, powerful enumeration implementation for Scala with exhaustive pattern match warnings and helpful integrations. -
Chimney
Scala library for boilerplate-free, type-safe data transformations -
Scala-Logging
Convenient and performant logging library for Scala wrapping SLF4J. -
Freestyle
A cohesive & pragmatic framework of FP centric Scala libraries -
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. -
Each
A macro library that converts native imperative syntax to scalaz's monadic expressions -
Rapture
a collection of libraries for common, everyday programming tasks (I/O, JSON, i18n, etc.) -
Stateless Future
Asynchronous programming in fully featured Scala syntax. -
Scala Blitz
Scala framework for efficient sequential and data-parallel collections - -
Squid
Squid – type-safe metaprogramming and compilation framework for Scala -
Records for Scala
Labeled records for Scala based on structural refinement types and macros. -
Play monadic actions
A simple scala DSL to allow clean and monadic style for Play! Actions -
enableIf.scala
A library that toggles Scala code at compile-time, like #if in C/C++ -
Freasy Monad
Easy way to create Free Monad using Scala macros with first-class Intellij support. -
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
A library for enhancing your application logs with colors and source code locations. -
Freedsl
Practical effect composition library based on abstract wrapping type and the free monad -
Resolvable
A library to optimize fetching immutable data structures from several endpoints in several formats.
Collect and Analyze Billions of Data Points in Real Time
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.