All Projects → jcabi → jcabi-log

jcabi / jcabi-log

Licence: other
Static Wrapper of SLF4J easing you from the necessity to create static LOGGER instances in each Java class

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to jcabi-log

Kotlin Inline Logger
A logger facilitating lazily-evaluated log calls via Kotlin's inline classes & functions.
Stars: ✭ 77 (+45.28%)
Mutual labels:  slf4j, logger
Tinylog
tinylog is a lightweight logging framework for Java, Kotlin, Scala, and Android
Stars: ✭ 360 (+579.25%)
Mutual labels:  slf4j, logger
herald
Log annotation for logging frameworks
Stars: ✭ 71 (+33.96%)
Mutual labels:  slf4j, logger
Izumi
Productivity-oriented collection of lightweight fancy stuff for Scala toolchain
Stars: ✭ 423 (+698.11%)
Mutual labels:  slf4j, logger
liquibase-slf4j
Liquibase SLF4J Logger.
Stars: ✭ 42 (-20.75%)
Mutual labels:  slf4j, logger
Smoke
A pure, flexible, extendable log library for Android.
Stars: ✭ 12 (-77.36%)
Mutual labels:  logger
guzzle-logger
Automatically log all API calls
Stars: ✭ 42 (-20.75%)
Mutual labels:  logger
guzzle-log-middleware
A Guzzle middleware to log request and responses automatically
Stars: ✭ 61 (+15.09%)
Mutual labels:  logger
Simple-Log
dnkpp.github.io/Simple-Log/
Stars: ✭ 13 (-75.47%)
Mutual labels:  logger
flor
FLOR: Fast Low-Overhead Recovery. FLOR lets you log ML training data post-hoc, with hindsight.
Stars: ✭ 123 (+132.08%)
Mutual labels:  logger
webpack-log
A logger for the Webpack ecosystem
Stars: ✭ 18 (-66.04%)
Mutual labels:  logger
ZLToolKit
一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO
Stars: ✭ 1,302 (+2356.6%)
Mutual labels:  logger
eo-logger
Isomorphic JavaScript logger based on Elastic Common Schema
Stars: ✭ 21 (-60.38%)
Mutual labels:  logger
android-sdk
AppSpector is a debugging service for mobile apps
Stars: ✭ 39 (-26.42%)
Mutual labels:  logger
dry-logger
[WIP] Logging library
Stars: ✭ 16 (-69.81%)
Mutual labels:  logger
react-native-log-ios
React Native iOS standalone logger
Stars: ✭ 37 (-30.19%)
Mutual labels:  logger
fluent-forward-go
A high-performance Go client for Fluentd and Fluent Bit
Stars: ✭ 26 (-50.94%)
Mutual labels:  logger
klog
KLog is a multiplatform free hamradio logger. It runs natively on Linux, macOS and Windows.
Stars: ✭ 31 (-41.51%)
Mutual labels:  logger
Loggaby
📝 A simple, lightweight and customizable logger.
Stars: ✭ 20 (-62.26%)
Mutual labels:  logger
ratlog.js
🐀 Ratlog JavaScript library - Application Logging for Rats, Humans and Machines
Stars: ✭ 24 (-54.72%)
Mutual labels:  logger

logo

EO principles respected here DevOps By Rultor.com We recommend IntelliJ IDEA

mvn PDD status codecov Maven Central Javadoc Hits-of-Code

More details are here: log.jcabi.com

Read this blog post: Get Rid of Java Static Loggers

Logger is a convenient static wrapper of slf4j (don't forget to include one of SLF4J Bindings into the project):

import com.jcabi.log.Logger;
class Foo {
  void bar(int value) {
    Logger.debug(this, "method #bar(%d) was called", value);
  }
}

How to contribute?

Fork the repository, make changes, submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven build before submitting a pull request:

$ mvn clean install -Pqulice
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].