Skip to content

Commit

Permalink
revert: Set the debug mode to false
Browse files Browse the repository at this point in the history
Debug mode is set to True during development and mistakenly committed. This change is reverted.

Signed-off-by: gatici <[email protected]>
  • Loading branch information
gatici committed Jul 26, 2024
1 parent 9ea4a96 commit 3bdfad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var (
func main() {
var debugMode bool

flag.BoolVar(&debugMode, "debug", true, "set to true to run the provider with support for debuggers like delve")
flag.BoolVar(&debugMode, "debug", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()

var serveOpts []tf6server.ServeOpt
Expand Down

0 comments on commit 3bdfad3

Please sign in to comment.