Skip to content

Commit

Permalink
chore: stray console log
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed Mar 4, 2024
1 parent efe5378 commit 8e081f1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/db/src/runtime/db-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const isWebContainer = !!process.versions?.webcontainer;

export function createLocalDatabaseClient({ dbUrl }: { dbUrl: string }): LibSQLDatabase {
const url = isWebContainer ? 'file:content.db' : dbUrl;
console.log('memory', process.env.TEST_IN_MEMORY_DB);
const client = createClient({ url: process.env.TEST_IN_MEMORY_DB ? ':memory:' : url });
const db = drizzleLibsql(client);

Expand Down

0 comments on commit 8e081f1

Please sign in to comment.