MemphisDebug

MemphisDebug — Debugging helper functions.

Synopsis

void                memphis_debug                       (const gchar *format,
                                                         ...);
void                memphis_info                        (const gchar *format,
                                                         ...);
void                memphis_debug_set_print_progress    (gboolean show_progress);
gboolean            memphis_debug_get_print_progress    ();

Description

These debug messages can be enabled with ./configure --enable-debug.

Details

memphis_debug ()

void                memphis_debug                       (const gchar *format,
                                                         ...);

Prints a debug message.

format :

a printf format string

... :

optional arguments

Since 0.1


memphis_info ()

void                memphis_info                        (const gchar *format,
                                                         ...);

Prints stuff.

format :

a printf format string

... :

optional arguments

Since 0.1


memphis_debug_set_print_progress ()

void                memphis_debug_set_print_progress    (gboolean show_progress);

Define if progress messages should be printed.

show_progress :

progress

Since 0.1


memphis_debug_get_print_progress ()

gboolean            memphis_debug_get_print_progress    ();

Returns :

if progress messages should be shown.

Since 0.1