Skip to content
Snippets Groups Projects
Commit b7bb0e54 authored by Lorenz Boguhn's avatar Lorenz Boguhn
Browse files

Add logger

parent e9357c10
No related branches found
No related tags found
5 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus,!82Add logger,!78Resolve "Implement Quarkus/Kotlin protype"
......@@ -20,7 +20,8 @@ dependencies {
testImplementation 'io.quarkus:quarkus-junit5'
testImplementation 'io.rest-assured:rest-assured'
implementation 'org.slf4j:slf4j-simple:1.7.29'
implementation 'io.github.microutils:kotlin-logging:1.12.0'
implementation 'io.fabric8:kubernetes-client:5.0.0-alpha-2'
//implementation 'com.fkorotkov:kubernetes-dsl:2.8.1'
}
......
package theodolite
import io.quarkus.runtime.annotations.QuarkusMain
import mu.KotlinLogging
private val logger = KotlinLogging.logger {}
@QuarkusMain
object Main {
@JvmStatic
fun main(args: Array<String>) {
println("Running main method")
logger.info("Application started")
//Quarkus.run()
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment