diff --git a/cartographer/common/configuration_file_resolver.cc b/cartographer/common/configuration_file_resolver.cc index 6ceb6ec..0b593f8 100644 --- a/cartographer/common/configuration_file_resolver.cc +++ b/cartographer/common/configuration_file_resolver.cc @@ -37,10 +37,11 @@ string ConfigurationFileResolver::GetFullPathOrDie(const string& basename) { const string filename = path + "/" + basename; std::ifstream stream(filename.c_str()); if (stream.good()) { + LOG(INFO) << "Found '" << filename << "' for '" << basename << "'."; return filename; } } - LOG(FATAL) << "File " << basename << " was not found."; + LOG(FATAL) << "File '" << basename << "' was not found."; } string ConfigurationFileResolver::GetFileContentOrDie(const string& basename) {