~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/background_worker.cc

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
  int error;
71
71
  if ((error= pthread_create(&thread, NULL, collectTransactionLogStats, 0)))
72
72
  {
73
 
    errmsg_printf(ERRMSG_LVL_ERROR, _("Unable to create background worker thread. Got error %s.\n"),
 
73
    drizzled::errmsg_printf(ERRMSG_LVL_ERROR,
 
74
                            _("Unable to create background worker thread. "
 
75
                              "Got error %s.\n"),
74
76
                  strerror(error));
75
77
    return true;
76
78
  }