~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/errmsg.cc

  • Committer: Brian Aker
  • Date: 2011-10-18 17:07:03 UTC
  • mto: This revision was merged to the branch mainline in revision 2444.
  • Revision ID: brian@tangent.org-20111018170703-cwtp14k5tykbp2xz
Enable syslog and format sql_select

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include <stdarg.h>
26
26
 
27
 
#include "errmsg.h"
28
 
#include "wrap.h"
 
27
#include <plugin/syslog/errmsg.h>
 
28
#include <plugin/syslog/wrap.h>
29
29
 
30
30
namespace drizzle_plugin
31
31
{
51
51
                            priority.c_str());
52
52
    _priority= WrapSyslog::getPriorityByName("warn");
53
53
  }
 
54
 
 
55
  std::cerr << "Starting syslog with " << _facility << std::endl;
54
56
}
55
57
 
56
58
bool error_message::Syslog::errmsg(drizzled::error::level_t, const char *format, va_list ap)