Commit 68ea734e authored by Marco Buttu's avatar Marco Buttu
Browse files

Log message (DEBUG level) in case of checkScan failure.

parent 709c5071
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -749,6 +749,7 @@ CORBA::Boolean MinorServoBossImpl::checkScan(
        string msg("checkScan(): the system is not ready");
        _EXCPT(MinorServoErrors::StatusErrorExImpl, impl, msg.c_str());
        impl.log(LM_DEBUG);
        ACS_SHORT_LOG((LM_DEBUG, msg.c_str()));
        throw impl.getMinorServoErrorsEx();
    }

@@ -756,6 +757,7 @@ CORBA::Boolean MinorServoBossImpl::checkScan(
        string msg("checkScan(): the system is executing another scan");
        _EXCPT(MinorServoErrors::StatusErrorExImpl, impl, msg.c_str());
        impl.log(LM_DEBUG);
        ACS_SHORT_LOG((LM_DEBUG, msg.c_str()));
        throw impl.getMinorServoErrorsEx();
    }

@@ -766,6 +768,7 @@ CORBA::Boolean MinorServoBossImpl::checkScan(
        string msg("checkScan(): unexpected exception calling checkScanImpl()");
        _EXCPT(MinorServoErrors::StatusErrorExImpl, impl, msg.c_str());
        impl.log(LM_DEBUG);
        ACS_SHORT_LOG((LM_DEBUG, msg.c_str()));
        throw impl.getMinorServoErrorsEx();
    }
}