~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/logging.cc

  • Committer: Brian Aker
  • Date: 2009-06-05 19:40:08 UTC
  • mfrom: (1039.4.10 drizzle_log)
  • Revision ID: brian@gaz-20090605194008-mjz1s0mnwv9117nk
Merge Mark

Show diffs side-by-side

added added

removed removed

Lines of Context:
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(),
115
 
            LoggingPreIterate(session)); 
 
115
            LoggingPostIterate(session)); 
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 !=