~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/logging.h

  • Committer: Brian Aker
  • Date: 2009-04-13 16:22:40 UTC
  • mfrom: (971.1.78 mordred)
  • Revision ID: brian@gaz-20090413162240-ugi3gvhofmcuglzl
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <drizzled/plugin/logging_handler.h>
24
24
 
25
 
int logging_initializer(st_plugin_int *plugin);
26
 
int logging_finalizer(st_plugin_int *plugin);
27
 
 
28
25
/* there are no parameters other than the session because logging can
29
26
 * pull everything it needs out of the session.  If need to add
30
27
 * parameters, look at how errmsg.h and errmsg.cc do it. */
31
28
 
32
29
bool logging_pre_do (Session *session);
33
30
bool logging_post_do (Session *session);
 
31
void add_logger(Logging_handler *handler);
 
32
void remove_logger(Logging_handler *handler);
34
33
 
35
34
#endif /* DRIZZLED_LOGGING_H */