From 0d6d52abbcd521848bfb5ed3bbb931e1dd56ef65 Mon Sep 17 00:00:00 2001 From: wass3r <1301201+wass3r@users.noreply.github.com> Date: Wed, 5 Jun 2024 11:46:23 -0500 Subject: [PATCH] update test function with new fields --- database/database.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/database/database.go b/database/database.go index 3f4ffffb5..f9e2658ed 100644 --- a/database/database.go +++ b/database/database.go @@ -226,5 +226,9 @@ func NewTest() (Interface, error) { WithDriver("sqlite3"), WithEncryptionKey("A1B2C3D4E5G6H7I8J9K0LMNOPQRSTUVW"), WithSkipCreation(false), + WithLogLevel("warn"), + WithLogShowSQL(false), + WithLogSkipNotFound(true), + WithLogSlowThreshold(200*time.Millisecond), ) }