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 ca93ff9 commit 5d5b352Copy full SHA for 5d5b352
components/environment/src/main/java/datadog/environment/ConfigHelper.java
@@ -81,10 +81,10 @@ public static String getEnvironmentVariable(String name) {
81
&& !configSource.getSupportedConfigurations().contains(name)) {
82
if (configInversionStrict != ConfigInversionStrictStyle.TEST) {
83
// TODO: Replace this log with Telemetry
84
- // System.err.println(
85
- // "Warning: Missing environment variable "
86
- // + name
87
- // + " from supported-configurations.json.");
+ System.err.println(
+ "Warning: Missing environment variable "
+ + name
+ + " from supported-configurations.json.");
88
log.error(
89
"Warning: Missing environment variable {} from supported-configurations.json.", name);
90
}
0 commit comments