vinodkc commented on code in PR #41144:
URL: https://github.com/apache/spark/pull/41144#discussion_r1214891310


##########
core/src/main/scala/org/apache/spark/SparkContext.scala:
##########
@@ -194,6 +194,8 @@ class SparkContext(config: SparkConf) extends Logging {
 
   // log out Spark Version in Spark driver log
   logInfo(s"Running Spark version $SPARK_VERSION")
+  logInfo(s"OS info ${System.getProperty("os.name")}, 
${System.getProperty("os.version")}, " +
+    s"${System.getProperty("os.arch")}, Java version 
${System.getProperty("java.version")}")

Review Comment:
   Do you mean like this?
   ```
     logInfo(s"OS info ${System.getProperty("os.name")}, 
${System.getProperty("os.version")}, " +
       s"${System.getProperty("os.arch")} " +
       s"Java version ${System.getProperty("java.version")}")
   ```
   OR like this ?
     ```
   logInfo(s"OS info ${System.getProperty("os.name")}, 
${System.getProperty("os.version")}, " +
       s"${System.getProperty("os.arch")}")
     logInfo(s"Java version ${System.getProperty("java.version")}")
   ```



-- 
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]

Reply via email to