libctdb: test: logging enhancement
[sahlberg/ctdb.git] / libctdb / test / log.h
1 /*
2
3 This file is taken from nfsim (http://ozlabs.org/~jk/projects/nfsim/)
4
5 Copyright (c) 2003,2004 Jeremy Kerr & Rusty Russell
6
7 This file is part of nfsim.
8
9 nfsim is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 nfsim is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with nfsim; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22 */
23
24 #ifndef __HAVE_LOG_H
25 #define __HAVE_LOG_H
26 #include <stdbool.h>
27
28 enum log_type {
29         LOG_ALWAYS      = 0x00,
30         /* Packets that are written to ctdbd. */
31         LOG_WRITE       = 0x02,
32         /* Packets that are read from ctdbd. */
33         LOG_READ        = 0x04,
34         /* Logging from libctdb. */
35         LOG_LIB         = 0x08,
36         /* Logging from normal operations. */
37         LOG_UI          = 0x10,
38         /* Verbose debugging. */
39         LOG_VERBOSE     = 0x20,
40 };
41
42 /* Adds a \n for convenient logging.  Returns true if it was expected. */
43 bool log_line(enum log_type type, const char *format, ...);
44 /* Builds up buffer and prints out line at a time. */
45 void log_partial(enum log_type type, char *buf, unsigned bufsize,
46                  const char *format, ...);
47 #endif /* __HAVE_LOG_H */