g_infoLogSink

Error and info log message sinks.

These delegates are called with the log message passed as const(char)[] argument, and can be overwritten to hook the Thrift libraries up with a custom logging system. By default, they forward all output to stdout/stderr.

  1. void delegate(const(char)[]) g_infoLogSink;
    __gshared
    void delegate(const(char)[]) g_infoLogSink;
  2. void delegate(const(char)[]) g_errorLogSink;

Meta