Relax message as it seems to be recoverable

This commit is contained in:
Theo Arends 2025-09-26 16:51:09 +02:00
parent fee21ba272
commit 80f27d9cfc

View File

@ -68,7 +68,7 @@ void checkBeTop(void) {
int32_t top = be_top(berry.vm); int32_t top = be_top(berry.vm);
if (top != 0) { if (top != 0) {
be_pop(berry.vm, top); // TODO should not be there be_pop(berry.vm, top); // TODO should not be there
AddLog(LOG_LEVEL_DEBUG, D_LOG_BERRY "Error be_top is non zero=%d", top); AddLog(LOG_LEVEL_DEBUG, D_LOG_BERRY "Warning be_top is non zero=%d", top);
} }
} }