~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.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:
61
61
    {
62
62
      /* TRANSLATORS: The leading word "logging" is the name
63
63
         of the plugin api, and so should not be translated. */
64
 
      errmsg_printf(ERRMSG_LVL_ERROR,
 
64
      errmsg_printf(error::ERROR,
65
65
                    _("logging '%s' pre() failed"),
66
66
                    handler->getName().c_str());
67
67
      return true;
86
86
    {
87
87
      /* TRANSLATORS: The leading word "logging" is the name
88
88
         of the plugin api, and so should not be translated. */
89
 
      errmsg_printf(ERRMSG_LVL_ERROR,
 
89
      errmsg_printf(error::ERROR,
90
90
                    _("logging '%s' post() failed"),
91
91
                    handler->getName().c_str());
92
92
      return true;
110
110
    {
111
111
      /* TRANSLATORS: The leading word "logging" is the name
112
112
         of the plugin api, and so should not be translated. */
113
 
      errmsg_printf(ERRMSG_LVL_ERROR,
 
113
      errmsg_printf(error::ERROR,
114
114
                    _("logging '%s' postEnd() failed"),
115
115
                    handler->getName().c_str());
116
116
      return true;
133
133
    {
134
134
      /* TRANSLATORS: The leading word "logging" is the name
135
135
         of the plugin api, and so should not be translated. */
136
 
      errmsg_printf(ERRMSG_LVL_ERROR,
 
136
      errmsg_printf(error::ERROR,
137
137
                    _("logging '%s' resetCurrentScoreboard() failed"),
138
138
                    handler->getName().c_str());
139
139
      return true;