Skip to content

Instantly share code, notes, and snippets.

@findepi
Created June 20, 2024 11:26
Show Gist options
  • Save findepi/d525d134a28130379bfb0f4ac61b0119 to your computer and use it in GitHub Desktop.
Save findepi/d525d134a28130379bfb0f4ac61b0119 to your computer and use it in GitHub Desktop.
  1. Intellij Preferences > Live Templates > group Java
  2. Add a new one with
    • abbreviation log
    • Description Add airlift Logger
    • Template text private static final io.airlift.log.Logger log = io.airlift.log.Logger.get($CLASS_NAME$.class);
    • Applicable contexts: Java > Declaration
    • check Shorten FQ names
    • Edit variables button and there add CLASS_NAME variable with className() expression
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment