~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/errmsg.h

  • Committer: Brian Aker
  • Date: 2011-10-19 19:30:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2444.
  • Revision ID: brian@tangent.org-20111019193054-pxnb4hflrmbfhmbm
Fix level_t to be more inline with syslog

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
{
32
32
private:
33
33
  int _facility;
34
 
  int _priority;
35
34
 
36
35
public:
37
 
  explicit Syslog(const std::string& facility, const std::string& priority);
 
36
  explicit Syslog(const std::string& facility);
38
37
 
39
38
  virtual bool errmsg(drizzled::error::level_t, const char *format, va_list ap);
40
39
};