소스 검색

update debug message

jblanked 11 달 전
부모
커밋
6b84c4201a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      flip_world.c

+ 1 - 1
flip_world.c

@@ -20,7 +20,7 @@ bool is_enough_heap(size_t heap_size, bool check_blocks)
     const size_t min_free = memmgr_get_free_heap();
     if (min_free < min_heap)
     {
-        FURI_LOG_E(TAG, "Not enough heap memory: %zu bytes", min_free);
+        FURI_LOG_E(TAG, "Not enough heap memory: There are %zu bytes free.", min_free);
         return false;
     }
     if (check_blocks)