~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/logging.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
  uint64_t _threshold_slow;
36
35
  uint64_t _threshold_big_resultset;
37
36
  uint64_t _threshold_big_examined;
38
37
 
39
38
public:
40
39
  Syslog(const std::string &facility,
41
 
         const std::string &priority,
42
40
         uint64_t threshold_slow,
43
41
         uint64_t threshold_big_resultset,
44
42
         uint64_t threshold_big_examined);