(file) Return to SystemLogListenerDestination.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Handler / SystemLogListenerDestination

Diff for /pegasus/src/Pegasus/Handler/SystemLogListenerDestination/SystemLogListenerDestination.cpp between version 1.3.8.1 and 1.7

version 1.3.8.1, 2006/02/10 16:11:44 version 1.7, 2006/11/14 18:34:53
Line 29 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Yi Zhou, Hewlett-Packard Company (yi.zhou@hp.com)  
 //  
 // Modified By:  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
Line 84 
Line 80 
         // and maps it to Pegasus logger severity. Otherwise, default value         // and maps it to Pegasus logger severity. Otherwise, default value
         // is used.         // is used.
  
         Uint32 severityPos = indication.findProperty(CIMName          Uint32 severityPos =
             ("PerceivedSeverity"));              indication.findProperty(CIMName("PerceivedSeverity"));
  
         if (severityPos != PEG_NOT_FOUND)         if (severityPos != PEG_NOT_FOUND)
         {         {
Line 140 
Line 136 
  
         // writes the formatted indication to a system log file         // writes the formatted indication to a system log file
         _writeToSystemLog(ident_name, severity, indicationText);         _writeToSystemLog(ident_name, severity, indicationText);
   
     }     }
     catch (CIMException & c)     catch (CIMException & c)
     {     {
Line 162 
Line 157 
             "Failed to deliver indication to system log file.");             "Failed to deliver indication to system log file.");
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
  
         throw PEGASUS_CIM_EXCEPTION_L (CIM_ERR_FAILED,          throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_FAILED, MessageLoaderParms(
             MessageLoaderParms("Handler.SystemLogListenerDestination."              "Handler.SystemLogListenerDestination.SystemLogListenerDestination."
             "SystemLogListenerDestination.FAILED_TO_DELIVER_INDICATION_TO_SYSTEM_LOG",                  "FAILED_TO_DELIVER_INDICATION_TO_SYSTEM_LOG",
             "Failed to deliver indication to system log file."));             "Failed to deliver indication to system log file."));
     }     }
  
Line 196 
Line 191 
  
 } }
  
 // This is the dynamic entry point into this dynamic module. The name of  PEGASUS_NAMESPACE_END
 // this handler is "SystemLogListenerDestination" which is appended to "PegasusCreateHandler_"  
 // to form a symbol name. This function is called by the HandlerTable  PEGASUS_USING_PEGASUS;
 // to load this handler.  
  
 extern "C" PEGASUS_EXPORT CIMHandler*  // This is the entry point into this dynamic module.
     PegasusCreateHandler_SystemLogListenerDestination() {  
   extern "C" PEGASUS_EXPORT CIMHandler* PegasusCreateHandler(
       const String& handlerName)
   {
       if (handlerName == "SystemLogListenerDestination")
       {
     return new SystemLogListenerDestination;     return new SystemLogListenerDestination;
 } }
  
 PEGASUS_NAMESPACE_END      return 0;
   }


Legend:
Removed from v.1.3.8.1  
changed lines
  Added in v.1.7

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2