File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
features/storage/kvstore/conf Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,12 +184,12 @@ int _calculate_blocksize_match_tdbstore(BlockDevice *bd)
184
184
bd_size_t number_of_sector = size / erase_size;
185
185
bd_size_t number_of_page = size / page_size;
186
186
if (number_of_sector < TDBStore::STORE_SECTORS) {
187
- tr_warning (" KV Config: There are less than %d sectors - TDBStore will not work." , TDBStore::STORE_SECTORS);
187
+ tr_error (" KV Config: There are less than %d sectors - TDBStore will not work." , TDBStore::STORE_SECTORS);
188
188
return -1 ;
189
189
}
190
190
191
191
if (number_of_page < TDBStore::STORE_PAGES) {
192
- tr_warning (" KV Config: There are less than %d pages - TDBStore will not work." , TDBStore::STORE_PAGES);
192
+ tr_error (" KV Config: There are less than %d pages - TDBStore will not work." , TDBStore::STORE_PAGES);
193
193
return -1 ;
194
194
}
195
195
You can’t perform that action at this time.
0 commit comments