We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4176add commit e4c038cCopy full SHA for e4c038c
cvmassistants/keyprovider/key-provider-agent/src/key_provider_agent.c
@@ -80,7 +80,6 @@ int push_wrapkey_to_secret_box(const char* wrapkey) {
80
81
strcpy(request_buffer, "key=WRAP_KEY&value=");
82
strcat(request_buffer, wrapkey);
83
- LOG_DEBUG("Request body is %s", request_buffer);
84
85
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, request_buffer);
86
res = curl_easy_perform(curl);
@@ -152,7 +151,6 @@ int main(int argc, char** argv) {
152
151
return -1;
153
}
154
LOG_INFO("Successfully generated random wrap key");
155
- LOG_INFO("Generated random wrap key: %s", wrap_key);
156
157
int ret = push_wrapkey_to_secret_box(wrap_key);
158
if (ret != 0) {
0 commit comments