Cthulhu  0.2.10
Cthulhu compiler collection
Verbose logging

Verbose logging. More...

Collaboration diagram for Verbose logging:

Typedefs

typedef void(* verbose_t) (const char *fmt, va_list args)
 a logging callback More...
 

Functions

CT_BASE_API void ctu_log_update (bool enable)
 update the verbosity of the logging system More...
 
CT_BASE_API bool ctu_log_enabled (void)
 check if verbose logging is enabled More...
 
CT_BASE_API void ctu_log (STA_FORMAT_STRING const char *fmt,...)
 log a message More...
 
CT_BASE_API void ctu_vlog (const char *fmt, va_list args)
 log a message More...
 

Variables

CT_BASE_API verbose_t gVerboseCallback
 the global verbose logging callback More...
 

Detailed Description

Verbose logging.

Typedef Documentation

◆ verbose_t

typedef void(* verbose_t) (const char *fmt, va_list args)

a logging callback

Definition at line 21 of file log.h.

Function Documentation

◆ ctu_log()

CT_BASE_API void ctu_log ( STA_FORMAT_STRING const char *  fmt,
  ... 
)

log a message

Parameters
fmtthe format string
...the format arguments

◆ ctu_log_enabled()

CT_BASE_API bool ctu_log_enabled ( void  )

check if verbose logging is enabled

Returns
if verbose logging is enabled

Definition at line 20 of file log.c.

◆ ctu_log_update()

CT_BASE_API void ctu_log_update ( bool  enable)

update the verbosity of the logging system

Parameters
enableif verbose logging should be enabled

Definition at line 15 of file log.c.

◆ ctu_vlog()

CT_BASE_API void ctu_vlog ( const char *  fmt,
va_list  args 
)

log a message

Parameters
fmtthe format string
argsthe format arguments

Definition at line 37 of file log.c.

Variable Documentation

◆ gVerboseCallback

CT_BASE_API verbose_t gVerboseCallback
extern

the global verbose logging callback

Definition at line 12 of file log.c.