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