aboutsummaryrefslogtreecommitdiff
path: root/elf_loader.h
diff options
context:
space:
mode:
authorAleksei Vetrov <vvvvvv@google.com>2022-08-09 13:13:19 +0100
committerGiuliano Procida <gprocida@google.com>2022-08-10 18:09:17 +0100
commitff076ac157ddb814b315acd5205e0caef53ca15d (patch)
treee3415a072d7911886b373504349d2f59b8681878 /elf_loader.h
parent71d02626aa1eedf4a7c8cdf56536a567dc65ab9d (diff)
downloadstg-ff076ac157ddb814b315acd5205e0caef53ca15d.tar.gz
ELF loader: remove `path_` logging on check fails
It became more tedious to append `path_ << ": ..."` on any check. This change removes it because this information is redundant: users already know the path to the ELF file. PiperOrigin-RevId: 466325254 Change-Id: Id1e2d099279309705685a97e7253120b0ca6174f
Diffstat (limited to 'elf_loader.h')
-rw-r--r--elf_loader.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/elf_loader.h b/elf_loader.h
index f48d161..440a3b6 100644
--- a/elf_loader.h
+++ b/elf_loader.h
@@ -85,7 +85,6 @@ class ElfLoader final {
std::string GetSymbolName(const GElf_Shdr& symbol_table_header,
const GElf_Sym& symbol) const;
- const std::string path_;
const bool verbose_;
int fd_;
Elf* elf_;