| SILC_LOG_INFO
 
 NAME
 
    #define SILC_LOG_INFO(...)
DESCRIPTION
    This macro is a wrapper to the main logging function.
    It supports variable argument list formatting, and *automatically*
    appends newline at the end of the string.
NOTES
    This macro requires double parenthesis to ensure that the VA list
    formatting would work correctly.
EXAMPLE
    SILC_LOG_INFO(("Today i feel %s", core->mood));
SOURCE    #define SILC_LOG_INFO(fmt) silc_log_output(SILC_LOG_INFO, silc_format fmt) 
 
 
 
 |