Skip to content

Commit

Permalink
Merge pull request #657 from thedadams/fix-sdk-error-logging
Browse files Browse the repository at this point in the history
fix: set disable error logging when completing sdk server config
  • Loading branch information
thedadams authored Jul 23, 2024
2 parents d54d11b + 777f808 commit 671f0f0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/sdkserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ func complete(opts ...Options) Options {
result.Options = gptscript.Complete(result.Options, opt.Options)
result.ListenAddress = types.FirstSet(opt.ListenAddress, result.ListenAddress)
result.Debug = types.FirstSet(opt.Debug, result.Debug)
result.DisableServerErrorLogging = types.FirstSet(opt.DisableServerErrorLogging, result.DisableServerErrorLogging)
}

if result.ListenAddress == "" {
Expand Down

0 comments on commit 671f0f0

Please sign in to comment.