This commit is contained in:
zt
2025-03-11 15:04:38 +08:00
parent 4b54cba7e4
commit a68535b28d
4 changed files with 18 additions and 4 deletions

View File

@ -30,7 +30,7 @@ public class EncryptDecryptFilter implements Filter {
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
if (!aesConfig.isEnabled()) {
logger.info("Encryption/Decryption is disabled. Skipping.");
// logger.info("Encryption/Decryption is disabled. Skipping.");
chain.doFilter(request, response);
return;
}