@@ -63,7 +63,7 @@ func absoluteBinaryPath(ctx context.Context, logger slog.Logger) (string, error)
63
63
return "" ,xerrors .Errorf ("Terraform binary get version failed: %w" ,err )
64
64
}
65
65
66
- logger .Info (ctx ,"detected terraform version" ,
66
+ logger .Debug (ctx ,"detected terraform version" ,
67
67
slog .F ("installed_version" ,installedVersion .String ()),
68
68
slog .F ("min_version" ,minTerraformVersion .String ()),
69
69
slog .F ("max_version" ,maxTerraformVersion .String ()))
@@ -97,7 +97,7 @@ func Serve(ctx context.Context, options *ServeOptions) error {
97
97
return xerrors .Errorf ("absolute binary context canceled: %w" ,err )
98
98
}
99
99
100
- options .Logger .Warn (ctx ,"no usable terraform binary found, downloading to cache dir" ,
100
+ options .Logger .Debug (ctx ,"no usable terraform binary found, downloading to cache dir" ,
101
101
slog .F ("terraform_version" ,TerraformVersion .String ()),
102
102
slog .F ("cache_dir" ,options .CachePath ))
103
103
binPath ,err := Install (ctx ,options .Logger ,options .CachePath ,TerraformVersion )