Add server db logging

This commit is contained in:
Sam Becker 2024-03-02 12:49:01 -06:00
parent b9393a6fda
commit ca58474404

View File

@ -289,6 +289,8 @@ export type GetPhotosOptions = {
const safelyQueryPhotos = async <T>(callback: () => Promise<T>): Promise<T> => {
let result: T;
console.log('Executing sql query (neon postgres)');
try {
result = await callback();
} catch (e: any) {