runtime: remove forgotten printf at starup when retain memory is restored.
authorEdouard Tisserant
Wed, 12 Oct 2022 11:09:33 +0200
changeset 3644 ecf43c7ac1fb
parent 3629 f117526d41ba
child 3645 82882a9f91ce
runtime: remove forgotten printf at starup when retain memory is restored.
targets/plc_debug.c
--- a/targets/plc_debug.c	Wed Oct 05 09:06:18 2022 +0200
+++ b/targets/plc_debug.c	Wed Oct 12 11:09:33 2022 +0200
@@ -154,8 +154,6 @@
 
             UnpackVar(dsc, &value_p, NULL, &size);
 
-            printf("Reminding %%d %%ld \n", retain_list_collect_cursor, size);
-
             /* if buffer not full */
             Remind(retain_offset, size, value_p);
             /* increment cursor according size*/
@@ -211,8 +209,6 @@
         retain_list_collect_cursor++;
     }
 
-    printf("Retain size %%d \n", retain_size);
-            
     return retain_size;
 }