~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/errmsg.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-17 22:46:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2442.
  • Revision ID: olafvdspek@gmail.com-20111017224616-gcj9z1sjpauwsp14
Refactor

Show diffs side-by-side

added added

removed removed

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