COMPMID-1912: Print functions should be enabled in assert mode

Change-Id: Ic7c4b703bd5de73275ae6352a787969e6de55520
Reviewed-on: https://review.mlplatform.org/600
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com>
diff --git a/src/core/Utils.cpp b/src/core/Utils.cpp
index 7223368..2df5f81 100644
--- a/src/core/Utils.cpp
+++ b/src/core/Utils.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017, 2018 ARM Limited.
+ * Copyright (c) 2016-2019 ARM Limited.
  *
  * SPDX-License-Identifier: MIT
  *
@@ -395,7 +395,7 @@
     return std::make_pair(w, h);
 }
 
-#ifdef ARM_COMPUTE_DEBUG_ENABLED
+#ifdef ARM_COMPUTE_ASSERTS_ENABLED
 void arm_compute::print_consecutive_elements(std::ostream &s, DataType dt, const uint8_t *ptr, unsigned int n, int stream_width, const std::string &element_delim)
 {
     switch(dt)
@@ -456,4 +456,4 @@
     }
     return 0;
 }
-#endif /* ARM_COMPUTE_DEBUG_ENABLED */
+#endif /* ARM_COMPUTE_ASSERTS_ENABLED */