dongjoon-hyun commented on code in PR #41302:
URL: https://github.com/apache/spark/pull/41302#discussion_r1210959787
##########
core/src/main/scala/org/apache/spark/SparkContext.scala:
##########
@@ -2679,7 +2685,7 @@ class SparkContext(config: SparkConf) extends Logging {
* various Spark features.
*/
object SparkContext extends Logging {
- private val VALID_LOG_LEVELS =
+ val VALID_LOG_LEVELS =
Review Comment:
Given the use case, the following will be sufficient.
```scala
- val VALID_LOG_LEVELS =
+ private[spark] val VALID_LOG_LEVELS =
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]