:: com :: sun :: star :: logging ::

interface XSimpleLogRing

Methods' Summary
logString allows to add a message to the logger  
getCollectedLog allows to get the collected messages from the logger  
Methods' Details
logString
void
logString( [in] string  aMessage );

Description
allows to add a message to the logger
getCollectedLog
sequence< string >
getCollectedLog();

Description
allows to get the collected messages from the logger

It is up to logger implementation to provide only the limited number of last messages.

Top of Page