summaryrefslogtreecommitdiff
path: root/linker/linker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linker/linker.cpp')
-rw-r--r--linker/linker.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/linker/linker.cpp b/linker/linker.cpp
index a3bd9641e..fb22a1d79 100644
--- a/linker/linker.cpp
+++ b/linker/linker.cpp
@@ -4093,8 +4093,9 @@ static std::string get_ld_config_file_path(const char* executable_path) {
if (file_exists(kLdGeneratedConfigFilePath)) {
return kLdGeneratedConfigFilePath;
} else {
- DL_WARN("Warning: failed to find generated linker configuration from \"%s\"",
- kLdGeneratedConfigFilePath);
+ // TODO(b/146386369) : Adjust log level and add more condition to log only when necessary
+ INFO("Warning: failed to find generated linker configuration from \"%s\"",
+ kLdGeneratedConfigFilePath);
}
}