Skip to content

Commit

Permalink
Downgrade UDF compiler output to trace to stop it spamming the build …
Browse files Browse the repository at this point in the history
…logs. (#1739)
  • Loading branch information
big-andy-coates authored Aug 15, 2018
1 parent 23d7881 commit 13771d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ UdfInvoker compile(final Method method, final ClassLoader loader) {
method,
functionName,
description);
LOGGER.debug("Generated class for functionName={}, method={} class{}\n",
LOGGER.trace("Generated class for functionName={}, method={} class{}\n",
functionName,
method.getName(),
udafClass);
Expand Down Expand Up @@ -323,7 +323,7 @@ private static String generateCode(final Method method) {
.collect(Collectors.joining(",",
prefix, ");"));

LOGGER.debug("generated code for udf method = {}\n{}", method, code);
LOGGER.trace("generated code for udf method = {}\n{}", method, code);
return code;
}

Expand Down

0 comments on commit 13771d5

Please sign in to comment.