Commit fc58cad0 authored by Marco Bartolini's avatar Marco Bartolini
Browse files

fixed bug in CustomLogger due to copy-paste errors

parent d80d0f7e
Loading
Loading
Loading
Loading
+1 −13
Original line number Diff line number Diff line
@@ -33,13 +33,9 @@ CustomLoggerImpl::CustomLoggerImpl(const ACE_CString& CompName,
                                            CompName + ":isLogging",
                                            getComponent()
                                            );
    m_parser = new SimpleParser::CParser<CustomLoggerImpl>(this, 10);
}

CustomLoggerImpl::~CustomLoggerImpl(){
    if(m_parser != NULL)
        delete m_parser;
}
CustomLoggerImpl::~CustomLoggerImpl(){}

ACS::ROstring_ptr CustomLoggerImpl::filename() throw (CORBA::SystemException)
{   
@@ -199,14 +195,6 @@ CustomLoggerImpl::initialize() throw (ACSErr::ACSbaseExImpl)
        throw __dummy.getComponentErrorsEx();
     }

     /* COMMAND PARSER INITIALIZATION
     =================================*/
     m_parser->add(
        "logMessage",·
        new function1<CustomLoggerImpl, non_constant, void_type, I<string_type> >(this, &CustomLoggerImpl::logMessageImpl),·
        1
     );

};

void