GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
DtMsgLogSetHandler(library call) DtMsgLogSetHandler(library call)

DtMsgLogSetHandler — installs an alternate message logging handler

#include &<Dt/MsgLog.h>
DtMsgLogHandler DtMsgLogSetHandler(
DtMsgLogHandler handler);

The DtMsgLogSetHandler function installs an alternate message logging handler that will be invoked when DtMsgLogMessage is called. If handler is NULL, the default handler is installed.

DtMsgLogSetHandler is optional and should be used only to override the default message logging handler. If the handler function wants to log a message, it must use the format and file specified in DtMsgLogMessage(3) so applications can reliably parse the log file. (If the handler wants to log a message, it can obtain the byte count to output by using the return value from a call to vfprint.)

The DtMsgLogHandler handler function has the following arguments:

A string "tag" to identify the application issuing the message. This is generally an application's argv[0].
The message type.
Specifies the sprintf format of the message.
Specifies the variable number of arguments needed by format.

The handler function should not call DtMsgLogMessage.

A sample use of the DtMsgLogSetHandler function is in an application that prints the CDE data types and actions databases. If an error occurs when the databases are loaded, the error messages are logged and the application is not able to get the messages. However, if the application installs a message logging handler, when the database loading code encounters an error, the application's installed handler will be invoked to give the application access to the database loading error messages.

Specifies a message handler function.

None.

None.

None.

None.

The following code installs a DtMsgLogHandler handler and then calls DtDbLoad to load the CDE data typing and action databases. If an error occurs when the databases are loaded, the handler function will be invoked. The handler writes the message to an alternate file. After the databases are loaded, the default handler is restored.

(void) DtMsgLogSetHandler (msglog_handler);
DtDbLoad ();
(void) DtMsgLogSetHandler (NULL);
void my_handler (

const char * prog_name,
DtMsgLogType msg_type,
const char * format,
va_list args) {
FILE *fp;
fp = fopen ("/tmp/foo", "a+");
(void) fprintf (fp, "progname = %s0tformat = %s0tmsg_type = %d0, prog_name, format, msg_type);
(void) vfprintf (fp, format, args);
(void) fprintf (fp, "0); }

If DtMsgLogMessage completes successfully, it returns the previously installed handler. If it fails, it returns NULL.

None.

DtMsgLogMessage(3), DtMsgLogOpenFile(3)


Search for    or go to Top of page |  Section l |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.