You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by kunal642 <gi...@git.apache.org> on 2018/11/20 03:38:44 UTC

[GitHub] carbondata pull request #2921: [CARBONDATA-3104] Removed unnecessary configu...

Github user kunal642 commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2921#discussion_r234860057
  
    --- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/table/CarbonDropTableCommand.scala ---
    @@ -143,7 +143,6 @@ case class CarbonDropTableCommand(
           OperationListenerBus.getInstance.fireEvent(dropTablePostEvent, operationContext)
         } catch {
           case ex: NoSuchTableException =>
    -        LOGGER.error(ex.getLocalizedMessage, ex)
    --- End diff --
    
    Logging this event is necessary. Instead of printing the whole exception stack we can just print the message as a warning.


---