~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/transaction_log.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:
211
211
  {
212
212
    char errmsg[STRERROR_MAX];
213
213
    strerror_r(errno, errmsg, sizeof(errmsg));
214
 
    errmsg_printf(ERRMSG_LVL_ERROR, 
 
214
    errmsg_printf(error::ERROR, 
215
215
                  _("Failed to write full size of log entry.  Tried to write %" PRId64
216
216
                    " bytes at offset %" PRId64 ", but only wrote %" PRId32 " bytes.  Error: %s\n"), 
217
217
                  static_cast<int64_t>(data_length),
230
230
 
231
231
  if (unlikely(error_code != 0))
232
232
  {
233
 
    char errmsg[STRERROR_MAX];
234
 
    strerror_r(errno, errmsg, sizeof(errmsg));
235
 
    errmsg_printf(ERRMSG_LVL_ERROR, 
236
 
                  _("Failed to sync log file. Got error: %s\n"), 
237
 
                  errmsg);
 
233
    sql_perror(_("Failed to sync log file."));
238
234
  }
 
235
 
239
236
  return cur_offset;
240
237
}
241
238