test: Remove some debug prints, whoops.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 15m13s

This commit is contained in:
Cory McWilliams 2024-11-02 16:32:05 -04:00
parent 30e027092b
commit f74ca1c236
2 changed files with 1 additions and 6 deletions

View File

@ -1077,8 +1077,7 @@ static void _httpd_endpoint_view_work(tf_ssb_t* ssb, void* user_data)
}
else
{
bool result = tf_ssb_db_blob_get(ssb, blob_id, (uint8_t**)&view->data, &view->size);
tf_printf("ssb=%p result=%d blob_id=[%s] data=%p size=%zd\n", ssb, result, blob_id, view->data, view->size);
tf_ssb_db_blob_get(ssb, blob_id, (uint8_t**)&view->data, &view->size);
}
}
}

View File

@ -638,10 +638,6 @@ bool tf_ssb_db_blob_get(tf_ssb_t* ssb, const char* id, uint8_t** out_blob, size_
}
result = true;
}
else
{
tf_printf("OOPS %s\n", sqlite3_errmsg(db));
}
sqlite3_finalize(statement);
}
tf_ssb_release_db_reader(ssb, db);