Skip to content

Commit

Permalink
299: Benchmark using JMH or similar
Browse files Browse the repository at this point in the history
Task-Url: #299
  • Loading branch information
keilw committed Aug 6, 2020
1 parent 59321d5 commit 0630757
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ buildNumber.properties
/.project
/bin/
/toolchains.xml
/logging.properties

# IntelliJ #
.idea/
*.iml

# OS Files #
.DS_Store
.DS_Store
5 changes: 5 additions & 0 deletions src/main/config/logging.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
handlers= java.util.logging.ConsoleHandler
.level= FINE
java.util.logging.ConsoleHandler.level = FINE
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
java.util.logging.SimpleFormatter.format=[%1$tF %1$tT] [%4$-7s] %5$s %n
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

class IndriyaPerformanceTest {
private static final Logger LOGGER = Logger.getLogger(IndriyaPerformanceTest.class.getName());
private static final Level LOG_LEVEL = Level.INFO;
private static final Level LOG_LEVEL = Level.FINE;

@BeforeEach
void setUp() throws Exception {
Expand Down

0 comments on commit 0630757

Please sign in to comment.