fix typo in Base64DecodeFunc log

This commit is contained in:
Camille TJHOA 2020-03-27 17:22:40 +00:00
parent 4061cbed38
commit d7f711f40e
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ var Base64DecodeFunc = function.New(&function.Spec{
return cty.UnknownVal(cty.String), fmt.Errorf("failed to decode base64 data '%s'", s)
}
if !utf8.Valid([]byte(sDec)) {
log.Printf("[DEBUG] the result of decoding the the provided string is not valid UTF-8: %s", sDec)
return cty.UnknownVal(cty.String), fmt.Errorf("the result of decoding the the provided string is not valid UTF-8")
log.Printf("[DEBUG] the result of decoding the provided string is not valid UTF-8: %s", sDec)
return cty.UnknownVal(cty.String), fmt.Errorf("the result of decoding the provided string is not valid UTF-8")
}
return cty.StringVal(string(sDec)), nil
},