We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7099650 commit c83b83dCopy full SHA for c83b83d
option.go
@@ -95,3 +95,9 @@ func WithSlowLogThreshold(slowLogThreshold time.Duration) Option {
95
c.config.SlowLogThreshold = slowLogThreshold
96
}
97
98
+
99
+func WithEnableDetailSQL(enableDetailSQL bool) Option {
100
+ return func(c *Container) {
101
+ c.config.EnableDetailSQL = enableDetailSQL
102
+ }
103
+}
0 commit comments