Remove sql logging

This commit is contained in:
Sam Becker 2023-12-18 09:26:33 -06:00
parent 890b6c4f34
commit c2cb7ba494

View File

@ -381,11 +381,6 @@ export const getPhotos = async (options: GetPhotosOptions = {}) => {
const client = await db.connect();
console.log({
sql,
values,
});
return safelyQueryPhotos(() => client.query(sql, values))
.then(({ rows }) => rows.map(parsePhotoFromDb));
};