Logback VS Bunyan

Compare Logback vs Bunyan and see what are their differences.

Logback

The reliable, generic, fast and flexible logging framework for Java. (by qos-ch)

Bunyan

a simple and fast JSON logging module for node.js services (by trentm)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
WorkOS - The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com
featured
Logback Bunyan
20 12
2,893 7,132
0.7% -
8.7 0.0
6 days ago 8 months ago
Java JavaScript
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Logback

Posts with mentions or reviews of Logback. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-22.
  • JHipster 8 - Analisando o código da nossa primeira aplicação monolítica - Parte 1/3
    1 project | dev.to | 28 Apr 2024
  • Logging in your API
    13 projects | dev.to | 22 Feb 2023
    Java -> Logback, Log4j2, JDK (Java Util Logging), Slf4j, e.t.c.
  • Spring Boot logging with Loki, Promtail, and Grafana (Loki stack)
    5 projects | dev.to | 6 Jan 2023
    This is a GitHub link to my demo app. It’s simple Spring Boot web app used to debugging various stuff. There are many ways to configure JSON logging in Spring Boot. I decided to use Logback because it is easy to configure and one of the most widely used logging library in the Java Community. To enable JSON logging we need to add below dependencies.
  • 5 Best Logging Solutions for Java
    2 projects | dev.to | 5 Oct 2022
    Logback(https://logback.qos.ch/) is another non-commercial Java logging framework. It labels itself as a successor to the previously discussed Log4j framework.
  • Log4j: The Pain Just Keeps Going and Going
    8 projects | news.ycombinator.com | 20 Jul 2022
    > Then apache decides to put new people on log4j, do a backward incompatible v2 design that nevertheless is worse than slf4j. Why?

    slf4j itself isn't a logging framework. It's a facade to logging frameworks.

    Simple Logging Facade for Java ( https://www.slf4j.org )

    It needs a logging framework behind it - log4j, log4j2, logback, commons, JUL.

    The question is "why do log4j2?"

    Logback went from the log4j1.x path ( https://logback.qos.ch )

    Log4j2 has a lot of features that weren't present when the project started ( https://en.wikipedia.org/wiki/Log4j#Apache_Log4j_2 ).

    There is a licensing difference between Logback (LGPL) and Log4jx (Apache Commons).

  • E2E-Testing in CI Environment With Testcontainers
    3 projects | dev.to | 21 Jun 2022
    Also, I'd like you to pay attention to the log consumer. You see, when the E2E scenario fails, it's not always obvious why. Sometimes to understand the source of the problem you have to dig into containers' logs. Thankfully the log consumer allows us to forward a container's logs to any SLF4J logger instance. In this project, containers' logs are forwarded to regular text files (you can find the Logback configuration in the repository). Though it's much better to transfer logs to external logging facility (e.g. Kibana).
  • 🛡️ This is how we maintain & release Secured Software on Github 🤖
    6 projects | dev.to | 9 May 2022
  • Creating an interface
    1 project | /r/javahelp | 5 May 2022
  • How to Check if a Java Project Depends on A Vulnerable Version of Log4j
    8 projects | dev.to | 20 Dec 2021
    This shows that the MariaDB JDBC driver uses Logback as a logging framework. Although Logback is not affected by Log4Shell, it has a related vulnerability (of much lesser severity, no need to panic) fixed in version 1.2.8 and 1.3.0-alpha11. I checked the version used by the connector and found that it used 1.3.0-alpha10. Even though Logback is included as a test dependency in the MariaDB driver, I sent a pull request on GitHub to update it. I encourage you to do the same in any open-source project you find and that includes a vulnerable dependency.
  • Migrating off of Log4j 2.x
    3 projects | dev.to | 19 Dec 2021
    Dependencing on the project, changing the logger might range from easy peasy to a multi-week task. I'm ready to bet that in many (most?) cases, it'd actually be quite easy, so let's explore how to do it, using Logback as the target (there aren't that many alternatives actually).

Bunyan

Posts with mentions or reviews of Bunyan. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-22.
  • Structured Logging with Slog
    11 projects | news.ycombinator.com | 22 Aug 2023
  • Logging in your API
    13 projects | dev.to | 22 Feb 2023
    NodeJS -> Pino, Winston, Bunyan, Npmlog, e.t.c.
  • 7 Best Node.js Logging Libraries for Your Next Projects
    6 projects | dev.to | 13 Dec 2022
    Bunyan is also another popular and fast JSON Node.js logging library. Just like Winston, it also supports logging into multiple transport options. Other features include a neat-printing CLI for logs, a log filter, serializers for rendering objects, snooping system, and the ability to support multiple runtime environments such as NW.js and WebPack. Bunyan enforces the JSON format for logs.
  • Node.js: How to Power Up Your Logging
    3 projects | dev.to | 1 May 2022
    bunyan argues that logs should be structured and that JSON is a good format for that. It describes itself as a “simple and fast JSON logging library” and has all the features you would expect from a logging library, including serializers and support for different runtime environments including Node.js, Browserify and Webpack.
  • Understanding the dependency inversion principle in TypeScript
    2 projects | dev.to | 21 Mar 2022
    Suppose that after some time you decide that the winston logger library was not the best logger for your project and you want to use Bunyan, what do you do? You just need to create a BunyanLogger class that implements the ILogger interface and it is ready to be used by the UserService.
  • Patterns and Anti-patterns in Node.js
    12 projects | dev.to | 15 Mar 2022
    Bunyan: Another popular logging library that outputs in JSON by default.
  • Top 15 libraries you should use for every Node Express backend project.
    3 projects | dev.to | 13 Mar 2022
    bunyan
  • Designing Error Messages and a Logging Strategy in Node.js
    3 projects | dev.to | 30 Nov 2021
    Are there more options? Absolutely: Bunyan, Pino, and others. It depends on what your particular logging needs are.
  • Open Sourcing URL Shortener
    5 projects | dev.to | 2 Oct 2021
    With the increasing number of requests and possibly errors, we needed a proper logging setup to debug and monitor the service. That’s why we chose bunyan to log insightful data in our application. These logs sit conveniently on our new logging pipeline running on EFK (or, Elasticsearch Fluentd Kibana) stack. While this deserves a separate blog post on its own, let’s take a brief look at how the logs travel from our application to the kibana dashboard.
  • Best Practices for Logging in Node.js
    5 projects | dev.to | 8 Sep 2021
    Bunyan — Another feature-rich logging framework that outputs in JSON by default and provides a CLI tool for viewing your logs.

What are some alternatives?

When comparing Logback and Bunyan you can also consider the following projects:

Apache Log4j 2 - Apache Log4j 2 is a versatile, feature-rich, efficient logging API and backend for Java.

pino - 🌲 super fast, all natural json logger

Logbook - An extensible Java library for HTTP request and response logging

winston - A logger for just about everything.

Logstash - Logstash - transport and process your logs, events, or other data

console-log-level - The most simple logger imaginable

tinylog - tinylog is a lightweight logging framework for Java, Kotlin, Scala, and Android

tracer for node.js - A powerful and customizable logging library for node.js

FizzBuzz Enterprise Edition - FizzBuzz Enterprise Edition is a no-nonsense implementation of FizzBuzz made by serious businessmen for serious business purposes.

storyboard - End-to-end, hierarchical, real-time, colorful logs and stories

graylog - Free and open log management

log4js-node - A port of log4js to node.js