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 79764a3 commit 68d78c6Copy full SHA for 68d78c6
src/core/lib/support/env.h
@@ -36,6 +36,10 @@ char *gpr_getenv(const char *name);
36
/* Sets the the environment with the specified name to the specified value. */
37
void gpr_setenv(const char *name, const char *value);
38
39
+/* This is a version of gpr_getenv that does not produce any output if it has to
40
+ use an insecure version of the function. It is ONLY to be used to solve the
41
+ problem in which we need to check an env variable to configure the verbosity
42
+ level of logging. So DO NOT USE THIS. */
43
char *gpr_getenv_silent(const char *name, char** dst);
44
45
#ifdef __cplusplus
0 commit comments