An open API service indexing awesome lists of open source software.

https://github.com/alexanderwolz/commons-log

Common utilities for Java/Kotlin development over SLF4J logging
https://github.com/alexanderwolz/commons-log

classes common java kotlin logging utilities

Last synced: about 1 month ago
JSON representation

Common utilities for Java/Kotlin development over SLF4J logging

Awesome Lists containing this project

README

          

# Commons Log

![GitHub release (latest by date)](https://img.shields.io/github/v/release/alexanderwolz/commons-log)
![Maven Central Version](https://img.shields.io/maven-central/v/de.alexanderwolz/commons-log)
![GitHub](https://img.shields.io/github/license/alexanderwolz/commons-log)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/alexanderwolz/commons-log)
![GitHub all releases](https://img.shields.io/github/downloads/alexanderwolz/commons-log/total?color=informational)

## 🧑‍💻 About

This repository provides common logging utilities.

## 🛠️ Build
1. Create jar resource using ```./gradlew clean build```
2. Copy ```/build/libs/*.jar``` into your project
3. Use the log classes

## 📦 Getting the latest release

You can pull the latest binaries from the central Maven repositories:

with Gradle
```kotlin
implementation("de.alexanderwolz:commons-log:1.3.1")
```
with Maven
```xml

de.alexanderwolz
commons-log
1.3.1

```

## 🪄 Example

```kotlin
val logger = Logger(javaClass)
logger.trace { "This is a trace log" }
```

- - -

Made with ❤️ in Bavaria


© 2025, Alexander Wolz