From 7136a36e78e182e7041302140fb4f6e8d92cab41 Mon Sep 17 00:00:00 2001 From: Rinjae Date: Wed, 10 Dec 2025 22:13:23 +0900 Subject: [PATCH] =?UTF-8?q?MonitoringProperty=20=EB=A1=9C=EA=B1=B0=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/MonitoringPropertyService.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/com/eactive/eai/rms/data/entity/man/monitoringProperty/service/MonitoringPropertyService.java b/src/main/java/com/eactive/eai/rms/data/entity/man/monitoringProperty/service/MonitoringPropertyService.java index 2956b26..6ce6042 100644 --- a/src/main/java/com/eactive/eai/rms/data/entity/man/monitoringProperty/service/MonitoringPropertyService.java +++ b/src/main/java/com/eactive/eai/rms/data/entity/man/monitoringProperty/service/MonitoringPropertyService.java @@ -2,6 +2,7 @@ package com.eactive.eai.rms.data.entity.man.monitoringProperty.service; import java.util.Optional; +import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -14,6 +15,7 @@ import com.querydsl.core.types.dsl.BooleanExpression; @Service @Transactional +@Slf4j public class MonitoringPropertyService extends AbstractDataService { @@ -44,9 +46,12 @@ public class MonitoringPropertyService if (property.isPresent()) { String value = property.get().getPrpty2Val(); if (value != null && !value.isEmpty()) { + log.debug("getPropertyValue - {} : {}", prptyName, value); return value; } } + + log.debug("getPropertyValue - {} : {} (defaultValue)", prptyName, defaultValue); return defaultValue; }