debian man page for synce_log_set_level

Query: synce_log_set_level

OS: debian

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

SYNCE_ERROR(3)						       http://www.synce.org/						    SYNCE_ERROR(3)

NAME
synce_error - error reporting functions
SYNOPSIS
#include <synce_log.h> void _synce_log(int level, const char* file, int line, const *char format, ... ); void synce_error(const *char format, ... ); void synce_warning(const *char format, ... ); void synce_info(const *char format, ... ); void synce_debug(const *char format, ... ); void synce_trace(const *char format, ... ); void synce_warning_unless(bool condition, const *char format, ... ); void synce_log_set_level(int level); void synce_log_use_syslog(void);
DESCRIPTION
The various synce_xxx() logging functions are implemented as macros calling the underlying _synce_log function, but are presented here as they should be used for clarity. All accept a format string and optional arguements in the same way as printf(3). synce_debug() and synce_trace() are equivalent. synce_warning_unless() will only take action if cond evaluates to a false value. These functions will as standard log to stdout. synce_log_use_syslog() will cause the output to be sent to syslog at the appropriate pri- ority. synce_log_set_level() sets the maximum priority level that will actually be output, whether to stdout or syslog, with the default maximum level being warning. The following defines are available, their equivalent syslog priorities are also shown. SYNCE_LOG_LEVEL_ERROR LOG_ERR SYNCE_LOG_LEVEL_WARNING LOG_WARNING SYNCE_LOG_LEVEL_INFO LOG_INFO SYNCE_LOG_LEVEL_DEBUG LOG_DEBUG SYNCE_LOG_LEVEL_TRACE LOG_DEBUG The following are also available for use with synce_log_set_level() SYNCE_LOG_LEVEL_LOWEST SYNCE_LOG_LEVEL_HIGHEST SYNCE_LOG_LEVEL_DEFAULT
SEE ALSO
synce(7) The SynCE Project 2008-02-23 SYNCE_ERROR(3)
Related Man Pages
synce_error(3) - debian
synce_log_use_syslog(3) - debian
synce_log_set_level(3) - debian
synce_trace(3) - debian
synce_warning_unless(3) - debian
Similar Topics in the Unix Linux Community
Adding the individual columns of a matrix.
Detecting unused variables...
Find columns in a file based on header and print to new file
How to copy a column of multiple files and paste into new excel file (next to column)?