Skip to content

Commit

Permalink
Save temp changes for testing
Browse files Browse the repository at this point in the history
Signed-off-by: David Zane <[email protected]>
  • Loading branch information
dzane17 committed Sep 23, 2024
1 parent f1827d8 commit 7d2fd06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ spotless {
include '**/*.java'
exclude '**/build/**', '**/build-*/**'
}
removeUnusedImports()
importOrder()
eclipse().configFile rootProject.file('config/formatterConfig.xml')
trimTrailingWhitespace()
endWithNewline()
// removeUnusedImports()
// importOrder()
// eclipse().configFile rootProject.file('config/formatterConfig.xml')
// trimTrailingWhitespace()
// endWithNewline()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,10 @@ public void categorize(SearchQueryRecord record) {
incrementQueryAggregationCounters(source.aggregations(), measurements);
incrementQuerySortCounters(source.sorts(), measurements);

if (logger.isTraceEnabled()) {
if (true) {
String searchShape = QueryShapeGenerator.buildShape(source, true);
logger.trace(searchShape);
System.out.println(searchShape);
}
}

Expand Down

0 comments on commit 7d2fd06

Please sign in to comment.