112
112
/* Use find_if instead of foreach so that we can collect return codes */
113
113
vector<Logging_handler *>::iterator iter=
114
114
find_if(all_loggers.begin(), all_loggers.end(),
116
116
/* If iter is == end() here, that means that all of the plugins returned
117
117
* false, which in this case means they all succeeded. Since we want to
118
118
* return false on success, we return the value of the two being !=