~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/errmsg.h

  • Committer: Mark Atwood
  • Date: 2011-10-20 03:54:24 UTC
  • mfrom: (2440.4.3 drizzle-build)
  • Revision ID: me@mark.atwood.name-20111020035424-d01kkb8wjdk5gxxx
mergeĀ lp:~brianaker/drizzle/syslog-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;
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
 
  virtual bool errmsg(drizzled::error::level_t, const char *format, va_list ap);
 
38
  virtual bool errmsg(drizzled::error::priority_t, const char *format, va_list ap);
40
39
};
41
40
 
42
41
} /* namespace error_message */