/* skip update if our configuration files are more recent */
if (oldTimestamp >= newTimestamp) {
Log(LogInformation, "ApiListener")
- << "Cannot apply configuration file update for path '" << configDir << "'. Current timestamp '"
+ << "Our configuration is more recent than the received configuration update."
+ << " Ignoring configuration file update for path '" << configDir << "'. Current timestamp '"
<< Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", oldTimestamp) << "' ("
<< std::fixed << std::setprecision(6) << oldTimestamp
- << ") is more recent than received timestamp '"
+ << ") >= received timestamp '"
<< Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", newTimestamp) << "' ("
<< newTimestamp << ").";
return false;