~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_query/logging_query.cc

Merged plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
#include <drizzled/server_includes.h>
21
 
#include <drizzled/plugin/logging_handler.h>
 
21
#include <drizzled/plugin/logging.h>
22
22
#include <drizzled/gettext.h>
23
23
#include <drizzled/session.h>
24
24
#include PCRE_HEADER
165
165
}
166
166
 
167
167
 
168
 
class Logging_query: public Logging_handler
 
168
class Logging_query: public drizzled::plugin::Logging
169
169
{
170
170
  int fd;
171
171
  pcre *re;
173
173
 
174
174
public:
175
175
 
176
 
  Logging_query() : Logging_handler("Logging_query"), fd(-1), re(NULL), pe(NULL)
 
176
  Logging_query()
 
177
    : drizzled::plugin::Logging("Logging_query"),
 
178
      fd(-1), re(NULL), pe(NULL)
177
179
  {
178
180
 
179
181
    /* if there is no destination filename, dont bother doing anything */
324
326
static int logging_query_plugin_init(drizzled::plugin::Registry &registry)
325
327
{
326
328
  handler= new Logging_query();
327
 
  registry.add(handler);
 
329
  registry.logging.add(handler);
328
330
 
329
331
  return 0;
330
332
}
331
333
 
332
334
static int logging_query_plugin_deinit(drizzled::plugin::Registry &registry)
333
335
{
334
 
  registry.remove(handler);
 
336
  registry.logging.remove(handler);
335
337
  delete handler;
336
338
 
337
339
  return 0;