~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

  • Committer: Brian Aker
  • Date: 2011-10-20 02:45:57 UTC
  • mto: This revision was merged to the branch mainline in revision 2444.
  • Revision ID: brian@tangent.org-20111020024557-33gjpv1ixdws52al
Update naming convention for priority.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
  my_error(ER_TABLEACCESS_DENIED_ERROR, MYF(0), user.getSQLPath().c_str(), table.getSQLPath().c_str());
81
81
82
82
 
83
 
static error::level_t _verbosity= error::ERROR;
 
83
static error::priority_t _verbosity= error::ERROR;
84
84
static std::string _verbosity_strint;
85
85
 
86
86
const std::string &verbose_string()
125
125
  return _arg;
126
126
}
127
127
 
128
 
error::level_t &verbosity()
 
128
error::priority_t &verbosity()
129
129
{
130
130
  return _verbosity;
131
131
}