diff --git a/common/bootstage.c b/common/bootstage.c
index 1afdee30188d2b69bf4a2b33b81b91d7a00f088c..32f4e8b7060d12b7b5916a8ef331d5350b7f3faf 100644
--- a/common/bootstage.c
+++ b/common/bootstage.c
@@ -409,7 +409,7 @@ int bootstage_stash(void *base, int size)
 
 	/* Update total data size */
 	hdr->size = ptr - (char *)base;
-	printf("Stashed %d records\n", hdr->count);
+	debug("Stashed %d records\n", hdr->count);
 
 	return 0;
 }
@@ -479,7 +479,7 @@ int bootstage_unstash(void *base, int size)
 
 	/* Mark the records as read */
 	data->rec_count += hdr->count;
-	printf("Unstashed %d records\n", hdr->count);
+	debug("Unstashed %d records\n", hdr->count);
 
 	return 0;
 }