~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/haildb_engine.cc

  • Committer: Brian Aker
  • Date: 2011-02-01 02:51:01 UTC
  • mto: (2132.1.1 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2134.
  • Revision ID: brian@tangent.org-20110201025101-yaj5kkdk2towo6ou
Merge in error message rework. Many error messages are fixed in this patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3144
3144
  bool r= false;
3145
3145
  va_list args;
3146
3146
  va_start(args, fmt);
3147
 
  if (! shutdown_in_progress)
3148
 
    r= plugin::ErrorMessage::vprintf(ERRMSG_LVL_WARN, fmt, args);
 
3147
  if (not shutdown_in_progress)
 
3148
  {
 
3149
    r= plugin::ErrorMessage::vprintf(error::WARN, fmt, args);
 
3150
  }
3149
3151
  else
 
3152
  {
3150
3153
    vfprintf(stderr, fmt, args);
 
3154
  }
3151
3155
  va_end(args);
3152
3156
 
3153
3157
  return (! r==true);