Last active
June 20, 2019 15:09
-
-
Save pgwillia/6676703 to your computer and use it in GitHub Desktop.
how to log in Solr DIH ScriptTransformer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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