Fix: @slf4j 적용

main
platformtech 3 years ago
parent f1f6fe98f7
commit 3f73c099b1

@ -12,6 +12,7 @@ import org.springframework.web.servlet.mvc.WebContentInterceptor;
import egovframework.com.cmm.LoginVO;
import egovframework.com.cmm.util.EgovUserDetailsHelper;
import lombok.extern.slf4j.Slf4j;
/**
*
@ -30,10 +31,8 @@ import egovframework.com.cmm.util.EgovUserDetailsHelper;
* 2014.06.11 URL (xml )
* </pre>
*/
@Slf4j
public class AuthenticInterceptor extends WebContentInterceptor {
private final Logger log = LoggerFactory.getLogger(CustomAuthenticInterceptor.class);
/**
* (LoginVO) .

@ -144,9 +144,9 @@ public class EgovFormBasedFileUtil {
String name = item.getFieldName();
InputStream stream = item.openStream();
if (item.isFormField()) {
LOGGER.info("Form field '{}' with value '{}' detected.", name, Streams.asString(stream));
log.info("Form field '{}' with value '{}' detected.", name, Streams.asString(stream));
} else {
LOGGER.info("File field '{}' with file name '{}' detected.", name, item.getName());
log.info("File field '{}' with file name '{}' detected.", name, item.getName());
if ("".equals(item.getName())) {
continue;

Loading…
Cancel
Save