~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/logging.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
  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);