Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change logLevel to not touch simple-logger defaultLogLevel #368

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import kotlin.reflect.KClass

internal interface LoggerFactory {
fun newLogger(cls: KClass<*>): Logger
fun newLogger(name: String): Logger
}

internal class RealLoggerFactory(
Expand All @@ -17,11 +18,16 @@ internal class RealLoggerFactory(
return org.slf4j.LoggerFactory.getLogger(cls.java)
}

override fun newLogger(name: String): Logger {
setLogLevel()
return org.slf4j.LoggerFactory.getLogger(name)
}

private fun setLogLevel() {
System.setProperty(LOG_LEVEL_SYSTEM_PROPERTY, config.logLevel)
}

companion object {
const val LOG_LEVEL_SYSTEM_PROPERTY = "org.slf4j.simpleLogger.defaultLogLevel"
const val LOG_LEVEL_SYSTEM_PROPERTY = "org.slf4j.simpleLogger.log.com.gabrielfeo.develocity.api"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import okhttp3.logging.HttpLoggingInterceptor.Level.BODY
import java.time.Duration
import org.slf4j.Logger

private const val HTTP_LOGGER_NAME = "com.gabrielfeo.develocity.api.OkHttpClient"

/**
* Base instance just so that multiple created [Config]s will share resources by default.
*/
Expand Down Expand Up @@ -58,7 +60,7 @@ private fun OkHttpClient.Builder.addNetworkInterceptors(
if (config.cacheConfig.cacheEnabled) {
addNetworkInterceptor(buildCacheEnforcingInterceptor(config))
}
val logger = loggerFactory.newLogger(HttpLoggingInterceptor::class)
val logger = loggerFactory.newLogger(HTTP_LOGGER_NAME)
addNetworkInterceptor(HttpLoggingInterceptor(logger = logger::debug).apply { level = BASIC })
addNetworkInterceptor(HttpLoggingInterceptor(logger = logger::trace).apply { level = BODY })
addNetworkInterceptor(HttpBearerAuth("bearer", config.apiToken()))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,25 @@ class OkHttpClientTest {
assertTrue(client.readTimeoutMillis > defaultTimeout)
}

@Test
fun `Logs under library package`() {
val loggerFactory = ProxyLoggerFactory(delegate = RealLoggerFactory(Config()))
buildClient(loggerFactory = loggerFactory)
loggerFactory.createdLoggers.let {
assertTrue(it.isNotEmpty())
it.forEach {
assertTrue(
it.name.startsWith("com.gabrielfeo.develocity.api"),
"Logger name '${it.name}' should start with 'com.gabrielfeo.develocity.api'"
)
}
}
}

private fun buildClient(
vararg envVars: Pair<String, String?>,
clientBuilder: OkHttpClient.Builder? = null,
loggerFactory: LoggerFactory? = null,
): OkHttpClient {
val fakeEnv = FakeEnv(*envVars)
if ("DEVELOCITY_API_TOKEN" !in fakeEnv)
Expand All @@ -75,6 +91,6 @@ class OkHttpClientTest {
null -> Config()
else -> Config(clientBuilder = clientBuilder)
}
return buildOkHttpClient(config, RealLoggerFactory(config))
return buildOkHttpClient(config, loggerFactory ?: RealLoggerFactory(config))
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,35 @@ import com.gabrielfeo.develocity.api.Config
import kotlin.test.AfterTest
import kotlin.test.BeforeTest
import kotlin.test.assertEquals
import kotlin.test.assertTrue
import kotlin.test.assertFalse

class LoggerFactoryTest {

private val logLevelProperty = RealLoggerFactory.LOG_LEVEL_SYSTEM_PROPERTY
private val defaultLogLevelProperty = "org.slf4j.simpleLogger.defaultLogLevel"

@BeforeTest
@AfterTest
fun cleanup() {
System.clearProperty(logLevelProperty)
System.clearProperty(defaultLogLevelProperty)
env = FakeEnv("DEVELOCITY_API_URL" to "https://example.com/")
}

@Test
fun `Level always copied from`() {
fun `Level always copied from Config`() {
val loggerFactory = RealLoggerFactory(Config(logLevel = "foo"))
loggerFactory.newLogger(LoggerFactoryTest::class)
assertEquals("foo", System.getProperty(logLevelProperty))
}

@Test
fun `Level has no effect on other loggers`() {
val loggerFactory = RealLoggerFactory(Config(logLevel = "debug"))
val logger = loggerFactory.newLogger(LoggerFactoryTest::class)
val otherLogger = org.slf4j.LoggerFactory.getLogger("foo.Bar")
assertTrue(logger.isDebugEnabled)
assertFalse(otherLogger.isDebugEnabled)
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.gabrielfeo.develocity.api.internal

import com.gabrielfeo.develocity.api.Config
import kotlin.reflect.KClass

internal class ProxyLoggerFactory(
private val delegate: LoggerFactory,
) : LoggerFactory {

val createdLoggers: MutableList<org.slf4j.Logger> = mutableListOf()

override fun newLogger(cls: KClass<*>) = delegate.newLogger(cls)
.also { createdLoggers.add(it) }

override fun newLogger(name: String) = delegate.newLogger(name)
.also { createdLoggers.add(it) }
}
Loading