File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/config Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 1818import java .util .Map ;
1919import java .util .Properties ;
2020import java .util .stream .Collectors ;
21- import javax .annotation .Nullable ;
2221
2322final class ConfigurationFile {
2423
2524 static final String CONFIGURATION_FILE_PROPERTY = "otel.javaagent.configuration-file" ;
2625
2726 private static Map <String , String > configFileContents ;
2827
29- // this class is used early, and must not use logging in most of its methods
30- // in case any file loading/parsing error occurs, we save the error message and log it later, when
31- // the logging subsystem is initialized
32- @ Nullable private static String fileLoadErrorMessage ;
33-
3428 static Map <String , String > getProperties () {
3529 if (configFileContents == null ) {
3630 configFileContents = loadConfigFile ();
You can’t perform that action at this time.
0 commit comments