QUERY: add SQL string with parameters
This commit is contained in:
parent
b79c218ac3
commit
5809b0d6a8
@ -17,6 +17,7 @@ package org.thingsboard.server.dao.sql.query;
|
|||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.jdbc.core.namedparam.NamedParameterUtils;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
@ -33,7 +34,12 @@ public class DefaultQueryLogComponent implements QueryLogComponent {
|
|||||||
@Override
|
@Override
|
||||||
public void logQuery(QueryContext ctx, String query, long duration) {
|
public void logQuery(QueryContext ctx, String query, long duration) {
|
||||||
if (logSqlQueries && duration > logQueriesThreshold) {
|
if (logSqlQueries && duration > logQueriesThreshold) {
|
||||||
|
|
||||||
|
String sqlToUse = NamedParameterUtils.substituteNamedParameters(query, ctx);
|
||||||
|
|
||||||
log.info("QUERY: {} took {} ms", query, duration);
|
log.info("QUERY: {} took {} ms", query, duration);
|
||||||
|
log.info("QUERY SQL TO USE: {} took {} ms", sqlToUse, duration);
|
||||||
|
|
||||||
Arrays.asList(ctx.getParameterNames()).forEach(param -> log.info("QUERY PARAM: {} -> {}", param, ctx.getValue(param)));
|
Arrays.asList(ctx.getParameterNames()).forEach(param -> log.info("QUERY PARAM: {} -> {}", param, ctx.getValue(param)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user