Skip to content

Instantly share code, notes, and snippets.

View renkin's full-sized avatar

René Kießig renkin

  • René Kießig Digitaldienstleistungen
  • Jena, Germany
View GitHub Profile
@xcoulon
xcoulon / logger_template.adoc
Last active July 2, 2024 17:17
SLF4J Logger Template for Eclipse

SLF4J Logger Template for Eclipse

In Preferences>Java>Editor>Templates, create a new template named logger in the Java type members context and with the following pattern:

/** The usual Logger.*/
private static final Logger LOGGER = LoggerFactory.getLogger(${enclosing_type}.class);
${:import('org.slf4j.Logger','org.slf4j.LoggerFactory')}