Skip to content

Commit ea55285

Browse files
committed
Better logs
1 parent 8af1b42 commit ea55285

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@
6868
"porter"
6969
]
7070
}
71-
}
71+
}

example/src/tests/blob.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe("Blobs", () => {
2222
"CREATE TABLE BlobTable ( id INT PRIMARY KEY, content BLOB) STRICT;",
2323
);
2424
} catch (e) {
25-
console.warn("error on before each", e);
25+
console.warn("Blobs block, error on before each", e);
2626
}
2727
});
2828

example/src/tests/hooks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe("Hooks", () => {
3030
"CREATE TABLE User ( id INT PRIMARY KEY, name TEXT NOT NULL, age INT, networth REAL) STRICT;",
3131
);
3232
} catch (e) {
33-
console.warn("error on before each", e);
33+
console.warn("Hooks Block, error on before each", e);
3434
}
3535
});
3636

example/src/tests/preparedStatements.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe("PreparedStatements", () => {
3838
"Carlos",
3939
]);
4040
} catch (e) {
41-
console.warn("error on before each", e);
41+
console.warn("Prepared statements block, error on before each", e);
4242
}
4343
});
4444

0 commit comments

Comments
 (0)