Skip to content

Instantly share code, notes, and snippets.

View djkeh's full-sized avatar
🏢
Working

Uno Kim djkeh

🏢
Working
View GitHub Profile
@djkeh
djkeh / kotlin-logging-style-guide.md
Last active October 20, 2023 02:48
kotlin-logging 사용법: logger 스타일 가이드

개요: kotling-logging 사용법

kotlin-logging에서 logger를 선언하는 방법은 2가지로 정리할 수 있다.

1. 표준안, 정석: static logger outside class

import io.github.oshai.kotlinlogging.KotlinLogging

private val logger = KotlinLogging.logger {} // 로거를 클래스 밖에 두는 방법