[ONOS-7166] send the number of ter failed cases to the slack

Change-Id: I8db70188e4dab879d6515e2160e0c894d604fe60
diff --git a/TestON/core/logger.py b/TestON/core/logger.py
index ed9b0bd..047c38e 100644
--- a/TestON/core/logger.py
+++ b/TestON/core/logger.py
@@ -309,6 +309,7 @@
             executedStatus.write("1\n")
         else:
             executedStatus.write("0\n")
+            executedStatus.write( "[Total]:" + str( main.TOTAL_TC_PLANNED ) + " [Executed]:" + str( main.TOTAL_TC_RUN ) + " [Failed]:" + str( main.TOTAL_TC_FAIL ) + "\n" )
         executedStatus.close()
 
     def updateCaseResults(self,main):