Table of Contents

NAME

gfs_debug - add to the debug log

SYNOPSIS

#include <gfs.h>
#include <gfs_debug.h>

void gfs_debug(int level, const char *format, ...);

DESCRIPTION

gfs_debug adds to the current debugging log. The first argument (level) indicates the level of this debug output. If the current debug level is greater than or equal to level then the statement is added to the debug log. The syntax of the remainder of the gfs_debug call is identical to the syntax of the standard C printf().

RETURN VALUE

None.

ERRORS

None.


Table of Contents