~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/logging.h

  • Committer: Monty Taylor
  • Date: 2009-05-06 04:37:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1008.
  • Revision ID: mordred@inaugust.com-20090506043759-a7rk3vqddrh52on0
Updated po files.

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 */