Commit 4cec8a5e authored by Luis de la Cal's avatar Luis de la Cal
Browse files

Fixed error where an int was attempted to be concatenated in a LOG, producing an exception

parent e88cecd0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ class l3_centralizedattackdetectorServiceServicerImpl(L3Centralizedattackdetecto
        self.cryptomining_detector_features_metadata.sort()
        LOGGER.info("Cryptomining Detector Features: " + str(self.cryptomining_detector_features_metadata))
        
        LOGGER.info("Batch size: " + BATCH_SIZE)
        LOGGER.info("Batch size: " + str(BATCH_SIZE))

        self.input_name = self.cryptomining_detector_model.get_inputs()[0].name
        self.label_name = self.cryptomining_detector_model.get_outputs()[0].name