Skip to content

Commit 777f808

Browse files
committed
fix: set disable error logging when completing sdk server config
Signed-off-by: Donnie Adams <[email protected]>
1 parent e3a43cb commit 777f808

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pkg/sdkserver/server.go

+1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ func complete(opts ...Options) Options {
154154
result.Options = gptscript.Complete(result.Options, opt.Options)
155155
result.ListenAddress = types.FirstSet(opt.ListenAddress, result.ListenAddress)
156156
result.Debug = types.FirstSet(opt.Debug, result.Debug)
157+
result.DisableServerErrorLogging = types.FirstSet(opt.DisableServerErrorLogging, result.DisableServerErrorLogging)
157158
}
158159

159160
if result.ListenAddress == "" {

0 commit comments

Comments
 (0)