Nine years ago, starting with commit
234647bb5, old on-disk entries are
reported with a notice to re-add the file in order to update the audio file
table. Bump the loglevel for now, and add a comment to turn the check into
a hard error eventually.
buf = shm_afd;
buf += sizeof(*afd);
save_chunk_table(&afd->afhi, buf);
+ /* This check can be turned into a hard error after 0.8.0 */
if (afd->afhi.max_chunk_size == 0) { /* v0.5.x on-disk afhi */
set_max_chunk_size(&afd->afhi);
- PARA_NOTICE_LOG("max chunk size unset, re-add required\n");
+ PARA_WARNING_LOG("max chunk size unset, re-add required\n");
} else
PARA_INFO_LOG("using max chunk size from afhi\n");
afd->max_chunk_size = afd->afhi.max_chunk_size;