Skip to content

Instantly share code, notes, and snippets.

@pgwillia
Last active June 20, 2019 15:09
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgwillia/6676703 to your computer and use it in GitHub Desktop.
Save pgwillia/6676703 to your computer and use it in GitHub Desktop.
how to log in Solr DIH ScriptTransformer
function transformer(row){
var log = java.util.logging.Logger.getLogger("transformer");
var LEVEL = java.util.logging.Level.INFO;
log.log(LEVEL, "hello world")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment