Resolved! How do I change the log level in Databricks?
How can I change the log level of the Spark Driver and executor process?
- 15789 Views
- 1 replies
- 2 kudos
Latest Reply
Change the log level of Driver:%scala spark.sparkContext.setLogLevel("DEBUG") spark.sparkContext.setLogLevel("INFO")Change the log level of a particular package in Driver logs:%scala org.apache.log4j.Logger.getLogger("shaded.databricks.v201809...
- 2 kudos