samples/task_profiler: remove "dump" logging

This print showing when the profiler is flusing data to the
UART is annoying, especially when shell is used

Change-Id: I62c4466bd7f599ff995027ee19aea539d6679ec0
Signed-off-by: Fabrice Olivero <fabrice.olivero@intel.com>
This commit is contained in:
Fabrice Olivero 2016-06-01 16:05:07 +02:00 committed by Inaky Perez-Gonzalez
commit cad05129b9

View file

@ -274,14 +274,7 @@ void prof_flush(void)
*/
if (prof_state == PROF_STOPPED) {
return;
}
#endif
/*TODO: should consider removing this... */
PRINT("Dump\n");
#ifdef PROFILER_SHELL
if (prof_state == PROF_STARTING) {
} else if (prof_state == PROF_STARTING) {
prof_send_platform_info();
prof_state = PROF_STARTED;
}