COMPMID-556 - Fix LOG_GRAPH_INFO Message in CLSimpleOperations

Change-Id: Iab5c55fed0c06e6ad305ff8429432b2cd880676b
Reviewed-on: http://mpd-gerrit.cambridge.arm.com/94403
Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
diff --git a/src/graph/operations/CLSimpleOperations.cpp b/src/graph/operations/CLSimpleOperations.cpp
index a42fada..4ec3a22 100644
--- a/src/graph/operations/CLSimpleOperations.cpp
+++ b/src/graph/operations/CLSimpleOperations.cpp
@@ -181,7 +181,7 @@
     flatten->configure(in, out);
 
     // Log info
-    ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEFlattenLayer"
+    ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLFlattenLayer"
                                << " Data Type: " << in->info()->data_type()
                                << " Input shape: " << in->info()->tensor_shape()
                                << " Output shape: " << out->info()->tensor_shape()
@@ -237,7 +237,7 @@
     fc->configure(in, weights, biases, out);
 
     // Log info
-    ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEFullyConnectedLayer"
+    ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLFullyConnectedLayer"
                                << " Data Type: " << in->info()->data_type()
                                << " Input shape: " << in->info()->tensor_shape()
                                << " Weights shape: " << weights->info()->tensor_shape()
@@ -351,7 +351,7 @@
     quantization->configure(in, out);
 
     // Log info
-    ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEQuantizationLayer"
+    ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLQuantizationLayer"
                                << " Data Type: " << in->info()->data_type()
                                << " Input shape: " << in->info()->tensor_shape()
                                << " Output shape: " << out->info()->tensor_shape()
@@ -377,7 +377,7 @@
     reshape->configure(in, out);
 
     // Log info
-    ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEReshapeLayer"
+    ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLReshapeLayer"
                                << " Data Type: " << in->info()->data_type()
                                << " Input shape: " << in->info()->tensor_shape()
                                << " Output shape: " << out->info()->tensor_shape()