Skip to content
Snippets Groups Projects
Commit 69bb7715 authored by Herman van Hovell's avatar Herman van Hovell Committed by Xiao Li
Browse files

[SQL][TRIVIAL] Lower parser log level to debug

## What changes were proposed in this pull request?
Currently the parser logs the query it is parsing at `info` level. This is too high, this PR lowers the log level to `debug`.

## How was this patch tested?
Existing tests.

Author: Herman van Hovell <hvanhovell@databricks.com>

Closes #18006 from hvanhovell/lower_parser_log_level.
parent 38f4e869
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ abstract class AbstractSqlParser extends ParserInterface with Logging {
protected def astBuilder: AstBuilder
protected def parse[T](command: String)(toResult: SqlBaseParser => T): T = {
logInfo(s"Parsing command: $command")
logDebug(s"Parsing command: $command")
val lexer = new SqlBaseLexer(new ANTLRNoCaseStringStream(command))
lexer.removeErrorListeners()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment