Common debug support

Common debug support — API to activate debugging messages from telepathy-glib

Functions

Object Hierarchy


Includes

#include <telepathy-glib/telepathy-glib.h>

Description

telepathy-glib has an internal mechanism for debug messages and filtering. Connection managers written with telepathy-glib are expected to connect this to their own debugging mechanisms: when the CM's debugging mechanism is activated, it should call tp_debug_set_flags() and/or tp_debug_set_persistent().

The supported debug-mode keywords and the debug messages that they enable are subject to change, but currently include:

Functions

tp_debug_set_flags ()

void
tp_debug_set_flags (const gchar *flags_string);

Set the debug flags indicated by flags_string , in addition to any already set.

The parsing matches that of g_parse_debug_string().

If telepathy-glib was compiled with --disable-debug (not recommended), this function has no practical effect, since the debug messages it would enable were removed at compile time.

Parameters

flags_string

The flags to set, comma-separated. If NULL or empty, no additional flags are set.

 

Since 0.6.1


tp_debug_set_persistent ()

void
tp_debug_set_persistent (gboolean persistent);

Used to enable persistent operation of the connection manager process for debugging purposes.

Parameters

persistent

TRUE prevents the connection manager mainloop from exiting, FALSE enables exiting if there are no connections (the default behavior).

 

tp_debug_divert_messages ()

void
tp_debug_divert_messages (const gchar *filename);

Open the given file for writing and duplicate its file descriptor to be used for stdout and stderr. This has the effect of closing the previous stdout and stderr, and sending all messages that would have gone there to the given file instead.

By default the file is truncated and hence overwritten each time the process is executed. Since version 0.7.14, if the filename is prefixed with '+' then the file is not truncated and output is added at the end of the file.

Passing NULL to this function is guaranteed to have no effect. This is so you can call it with the recommended usage tp_debug_divert_messages (g_getenv ("MYAPP_LOGFILE")) and it won't do anything if the environment variable is not set.

This function still works if telepathy-glib was compiled without debug support.

Parameters

filename

A file to which to divert stdout and stderr, or NULL to do nothing

 

Since 0.7.1


tp_debug_timestamped_log_handler ()

void
tp_debug_timestamped_log_handler (const gchar *log_domain,
                                  GLogLevelFlags log_level,
                                  const gchar *message,
                                  gpointer ignored);

A GLogFunc that prepends the UTC time (currently in ISO 8601 format, with microsecond resolution) to the message, then calls g_log_default_handler.

Intended usage is:

1
2
if (g_getenv ("MYPROG_TIMING") != NULL)
  g_log_set_default_handler (tp_debug_timestamped_log_handler, NULL);

If telepathy-glib was compiled with --disable-debug (not recommended), this function is equivalent to g_log_default_handler().

Changed in 0.9.0: timestamps are now printed in UTC, in RFC-3339 format. Previously, they were printed in local time, in a format similar to RFC-3339.

Parameters

log_domain

the message's log domain

 

log_level

the log level of the message

 

message

the message to process

 

ignored

not used

 

Since 0.7.1

Types and Values