You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@toree.apache.org by lr...@apache.org on 2017/08/15 16:51:24 UTC

incubator-toree git commit: [MINOR] Fix wrong binded variable name in log message

Repository: incubator-toree
Updated Branches:
  refs/heads/master 61c7f17ae -> c2ddd16eb


[MINOR] Fix wrong binded variable name in log message


Project: http://git-wip-us.apache.org/repos/asf/incubator-toree/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-toree/commit/c2ddd16e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-toree/tree/c2ddd16e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-toree/diff/c2ddd16e

Branch: refs/heads/master
Commit: c2ddd16eb97fb2f77b3c8e74001658cef41ed142
Parents: 61c7f17
Author: Luciano Resende <lr...@apache.org>
Authored: Tue Aug 15 10:51:05 2017 -0600
Committer: Luciano Resende <lr...@apache.org>
Committed: Tue Aug 15 10:51:05 2017 -0600

----------------------------------------------------------------------
 .../apache/toree/kernel/interpreter/scala/ScalaInterpreter.scala   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-toree/blob/c2ddd16e/scala-interpreter/src/main/scala/org/apache/toree/kernel/interpreter/scala/ScalaInterpreter.scala
----------------------------------------------------------------------
diff --git a/scala-interpreter/src/main/scala/org/apache/toree/kernel/interpreter/scala/ScalaInterpreter.scala b/scala-interpreter/src/main/scala/org/apache/toree/kernel/interpreter/scala/ScalaInterpreter.scala
index 0380410..2a4fb88 100644
--- a/scala-interpreter/src/main/scala/org/apache/toree/kernel/interpreter/scala/ScalaInterpreter.scala
+++ b/scala-interpreter/src/main/scala/org/apache/toree/kernel/interpreter/scala/ScalaInterpreter.scala
@@ -334,7 +334,7 @@ class ScalaInterpreter(private val config:Config = ConfigFactory.load) extends I
      doQuietly {
        // TODO: This only adds the context to the main interpreter AND
        //       is limited to the Scala interpreter interface
-       logger.debug(s"Binding SQLContext into interpreter as $bindName")
+       logger.debug(s"Binding SparkSession into interpreter as $bindName")
 
       interpret(s"""def ${bindName}: ${classOf[SparkSession].getName} = kernel.sparkSession""")