Skip to content

Instantly share code, notes, and snippets.

/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java application project to get you started.
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
* User Manual available at https://docs.gradle.org/7.1.1/userguide/building_java_projects.html
*/
plugins {
// Apply the application plugin to add support for building a CLI application in Java.
@jottinger
jottinger / Main.java
Created November 3, 2021 14:20
tilerendering
package p1;
import org.slf4j.LoggerFactory;
public class Main {
public static void main(String[] args) {
var logger= LoggerFactory.getLogger(Main.class);
System.out.println(logger.getClass());
}
}